Skip to content
Snippets Groups Projects
OrganizationItemDetails.css 787 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; /* Center the entire content */
}

.item-details {
    margin-top: 20px;
}

.item-details span {
    display: block;
    margin-bottom: 10px;
    text-align: left; /* Align text to the left within each span */
}

.delete-item-button {
    display: block;
    margin-top: 20px;
    padding: 10px 20px;
    color: #fff;
    background-color: #d9534f; /* Dark red color */
    border: 1px solid #d9534f;
    border-radius: 5px;
    cursor: pointer;
}

.delete-item-button:hover {
    background-color: #c9302c; /* Darker red color on hover */
}