Skip to content
Snippets Groups Projects
OrganizationItemDetails.css 1006 B
Newer Older
/* OrganizationItemDetails.css */
.organization-item-details {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    align-items: center;
}

.item-details {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the entire content */
    text-align: center;
}

.item-details span {
    display: block;
    margin-bottom: 10px;
    text-align: left;
    width: 100%;
.modify-item-button {
    display: block;
    margin-top: 20px;
    padding: 10px 20px;
    color: #fff;
    background-color: #5bc0de; /* Blue color for modify button */
    border: 1px solid #5bc0de;
    border-radius: 5px;
    cursor: pointer;
}

.modify-item-button:hover {
    background-color: #46b8da; /* Darker blue color on hover */
}

/* Style for dropdowns */
.item-details select {
    padding: 8px;
    width: 100%;
    margin-bottom: 10px;
}