table {
    max-height: 80%;
}

.fa {
    font-size: x-large !important;
}

td {
    color: black !important;
}

.select2-selection__rendered {
    background: #7676ff;
    border-bottom: 1px solid #5796cd !important;
    border-color: #7676ff;
    color: white !important;
}

.select2-selection {
    border: aliceblue !important;
}

.select2-results__option {
    background: white;
}

select {
    background: #7676ff;
    border-bottom: 1px solid #5796cd !important;
    border-color: #7676ff;
}

option {
    background: white;
}

.table-container {
    max-height: 80%;
    /* Set the height of the container to the full viewport height */
    overflow-y: auto !important;
    /* Add scroll if the table exceeds the container height */
}

/* FOR TABLE FIXED HEADER */
.tableFixHead {
    overflow-y: auto;
    max-height: 400px;
}

.tableFixHead table {
    border-collapse: collapse;
    width: 100%;
}

.tableFixHead th,
.tableFixHead td {
    padding: 8px 16px;
}

.tableFixHead th {
    position: sticky;
    top: 0;
}

.max-30 {
    max-height: 30em;
}