body {
    background-color: #FFF8DC;
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    background-color: #ffdbb9;
    color: black;
    border: 1px solid transparent;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    margin-right: 3px;
}

.nav-tabs .nav-link.active {
    font-weight: bold;
    background-color: white;
    color: black;
    border-color: #dee2e6 #dee2e6 #fff;
}

.fixed-header-table {
    height: 400px; /* Set desired height */
    overflow-y: scroll;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.fixed-header-table thead {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1;
}

.table-fixed td {
    white-space: normal;
    word-wrap: break-word;
}

@media (max-width: 767px) {
    .fixed-header-table thead {
        display: none;
    }

    .fixed-header-table td {
        display: block;
        text-align: right;
        border: none;
        position: relative;
        padding-left: 50%;
        white-space: normal; /* Ensure text wrapping */
    }

    .fixed-header-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
        white-space: nowrap; /* Prevent label text wrapping */
    }

    .fixed-header-table tr {
        border-bottom: 1px solid #dee2e6;
        display: block;
        margin-bottom: 10px;
    }
}
