
th:first-child, td:first-child {
    display: none;
}

.modal-dialog {
    max-width: 60%;
    min-width: 60%;
}


#alert {
    border: 1px solid red;
    position: absolute;
    display: none;
    top: 5px;
    right: 10px;
    width: 25%;
    text-align: right;
    z-index: 1051; /* Modal z-index is 1050, so this will appear above */
}

th {
    text-align: center !important;
}

td {
    border: .5px solid black !important;
}

.modal-title {
    font-weight: bold;
    text-align: center;
    width: 100%;
    margin: auto;
    padding: 10px;
    font-size: 100%;
}

.modal .text-area, .modal input {
    margin-bottom: 15px;
}

label {
    padding-bottom: 5px;
!important;
}

input[type='text'], .text-area, input[type='date'], search {
    background-color: rgba(236, 236, 212, 0.55);
    box-shadow: 1px 1px 1px black;
    color: black;

}

label, input[type='checkbox'] {
    font-weight: bold;
}

table {
    table-layout: fixed; /* Ensures that the table respects the widths of columns */
    overflow: hidden; /* Prevents content from overflowing */
}

table td {
    max-height: 2px;
    padding: 0;
    overflow: hidden; /* Prevent overflow within the cell */
    text-overflow: ellipsis; /* Display ellipsis for overflowed text */
    white-space: nowrap; /* Prevent text from wrapping */
}

body {
    background-color: #f8f9fa; /* Light background color for contrast */
}

.container-fluid {
    margin-top: 20px;
!important; /* Adds spacing at the top */
}

.btn {
    text-align: center;
    width: 38%;
}

.card {
    background-color: #ffffff; /* White background for cards */
    border-radius: 8px; /* Rounded corners for cards */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.table {
    margin-top: 20px; /* Spacing above the table */
    border-radius: 8px; /* Rounded corners for the table */
    overflow: hidden; /* Ensures rounded corners are visible */
}

.table th, .table td {
    vertical-align: middle; /* Center-aligns table cell content */
}

.text-area {
    resize: none; /* Prevents resizing of textarea */
}

.modal-content {
    border-radius: 8px; /* Rounded corners for modals */
}

.modal-header {
    background-color: #343a40; /* Dark background for modal header */
    color: #ffffff; /* White text color for modal header */
}

.modal-footer .btn {
    border-radius: 4px; /* Rounded corners for buttons */
}
