
.top_accordian_header {
    margin-bottom: .5rem;           /* mb-4 */
    border: 2px solid #374151;       /* border + border-gray-700 */
    border-radius: 0.5rem;           /* rounded (same as Bootstrap's .rounded) */
}

.top_accordian_body {
    padding: 1rem;
    background-color: #111827;
}
@media (max-width: 768px) {
    .top_accordian_body {
        padding: .5rem;
    }
}

.top_accordian_button {
    display: block;
    width: 100%;
    text-align: left;
    border-top-left-radius: 0.5rem;    /* rounded-top */
    border-top-right-radius: 0.5rem;
    background-color: #1F2937;         /* btn-dark base */
    color: #fff;
    border: none;
    padding-bottom: 0.25rem !important;
}

.top_accordian_button:hover {
    background-color: #374151;         /* hover effect */
}

.second_accordian_header {
    margin-bottom: 0.5rem;
    border: 1px solid #374151;       /* border-gray-700 */
    border-radius: 0.5rem;           /* rounded-lg */
}

.second_accordian_button {
    display: block;
    width: 100%;
    text-align: left;
    border-top-left-radius: 0.25rem;       /* rounded-top-sm */
    border-top-right-radius: 0.25rem;
    padding-bottom: 0.5rem !important;
}

.second_accordian_header_text {
    font-size: 1.125rem;             /* text-lg */
    font-weight: 600;                /* font-semibold */
    color: #facc15;                  /* text-yellow-400 */
}

.second_accordian_body {
    background-color: #1f2937;       /* bg-gray-800 */
    padding: 1rem;                   /* p-4 */
}
@media (max-width: 768px) {
    .second_accordian_body {
        padding: .5rem;
    }
}

.last_accordian_header {
    margin-bottom: 0.5rem;                 /* mb-2 */
}

.last_accordian_button {
    width: 100%;
    text-align: left;
    background-color: #4b5563;             /* bg-gray-600 */
    padding: 0.25rem .5rem;                  /* py-2 px-4 */
    border-radius: 0.375rem;               /* rounded-md */
    color: white;
    border: none;
}

.last_accordian_button:hover {
    background-color: #6b7280;             /* hover:bg-gray-500 */
}

.last_accordian_body {
    margin-top: 0.5rem;                    /* mt-2 */
    background-color: #374151;             /* bg-gray-700 */
    padding: 1rem;                         /* p-4 */
    border-radius: 0.375rem;               /* rounded-md */
    font-size: 0.875rem;                   /* text-sm */
    color: white;
}

.accordian_row_standard {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem; /* roughly gx-3 gy-2 */
}

.accordian_btn_group_responsive_end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem; /* Equivalent to Bootstrap's gap-2 */
    justify-content: flex-start;
    margin-left: auto; /* Equivalent to ms-auto */
    margin-top: 0.5rem; /* Equivalent to ms-auto */
}

@media (max-width: 768px) {
    .accordian_btn_group_responsive_end {
        justify-content: flex-end; /* matches justify-content-md-end */
    }
}

.ActionIconBox {
    cursor: pointer;
    width: 60px;
    height: 70px;
    background-color: #343a40;
    border: 1px solid #ffffff;
    border-radius: 6px;
    box-sizing: border-box;
    padding: 2px;
    transition: background-color 0.2s ease; /* smooth fade */
}

.ActionIconBox:hover {
    background-color: darkgray; /* slightly lighter/darker */
}

.ActionIconBoxTall {
    cursor: pointer;
    width: 60px;
    height: 90px;
    background-color: #343a40;
    border: 1px solid #ffffff;
    border-radius: 6px;
    box-sizing: border-box;
    transition: background-color 0.2s ease; /* smooth fade */
}

.ActionIconBoxTall:hover {
    background-color: darkgray; /* slightly lighter/darker */
}

.ActionIconContent {
    padding: 5px;
    text-align: center;
    background: none;
    border: none;
}


/* Backgrounds */
.bg-custom-dark {
    background-color: #0A0F2C;
    min-height: 70vh;
}

.bg-dark-glass {
    background-color: rgba(10, 31, 44, 0.9); /* Tailwind's #0A1F2C with 90% opacity */
}




/* Borders */
.border-gray-600 {
    border-color: #4B5563;
}
.border-gray-700 {
    border-color: #374151;
}




/* Backgrounds */
.bg-dark-900 {
    background-color: #111827;
}

/* Form Elements */
.input_box_header {
    font-size: 0.875rem;        /* text-sm */
    font-weight: 500;           /* font-medium */
}


.input_box {
    width: 100%;
    padding: 0.5rem 1rem;
    margin-top: 0.25rem;
    background-color: #1C2541;
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    color: white;
    outline: none;
    transition: box-shadow 0.2s ease;
}

.input_box:focus {
    box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.5);  /* focus:ring-2 + ring-sky-500 */
}

.input_box:-webkit-autofill,
.input_box:-webkit-autofill:hover,
.input_box:-webkit-autofill:focus,
.input_box:-webkit-autofill:active {
    background-color: #1C2541 !important;
    -webkit-box-shadow: 0 0 0 1000px #1C2541 inset !important;
    -webkit-text-fill-color: white !important; /* Force autofill text color */
    color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

.input_checkbox {
    width: 2rem; /* Make it nicely sized */
    height: 2rem;
    background-color: #1C2541;
    border: 2px solid #4b5563;
    border-radius: 0.25rem;
    appearance: none; /* Remove browser's default checkbox */
    cursor: pointer;
    vertical-align: middle;
    margin-right: 0.5rem;
    transition: background-color 0.2s, border-color 0.2s;
}

.input_checkbox:checked {
    background-color: #0ea5e9; /* Sky-500 */
    border-color: #0ea5e9;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 10.586L3.707 8.293l-1.414 1.414L6 13.414l8-8-1.414-1.414L6 10.586z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 75%;
}

.input_checkbox:disabled {
    cursor: default;
}

.input_box_money_parent {
    position: relative;
    background-color: #1C2541; /* Match your theme */
    border: 1px solid #4B5563; /* Gray-600 */
    border-radius: 0.5rem; /* rounded-lg */
}

.input_box_money_symbol_span {
    position: absolute;
    left: 0.75rem; /* padding-left */
    top: 50%;
    transform: translateY(-50%);
    color: #D1D5DB; /* text-gray-300 */
    pointer-events: none; /* don't interfere with input clicks */
    font-size: 1rem;
}

.input_box_money_container {
    width: 100%;
    padding-left: 2rem; /* to make space for the $ */
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: transparent;
    color: white;
    border: none;
    outline: none;
    font-size: 1rem;
}

.input_box_money_container:focus {
    outline: none;
    box-shadow: 0 0 0 2px #0EA5E9; /* sky-500 */
}

/* Hide the up/down arrows for number inputs (Chrome, Safari, Edge, Opera) */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide spinner for Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


/* Style the slider thumb (Webkit browsers: Chrome, Safari, Edge) */
input[type=range].form-range::-webkit-slider-thumb {
    background-color: #111827;
    border: 2px solid white;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
    -webkit-appearance: none;
    margin-top: -8px; /* centers thumb vertically */
}

/* Style the slider thumb Firefox */
input[type=range].form-range::-moz-range-thumb {
    background-color: #111827;
    border: 2px solid white;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
}

/* Style the slider thumb IE/Edge (legacy) */
input[type=range].form-range::-ms-thumb {
    background-color: #111827;
    border: 2px solid white;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
}

/* Try to make the calendar icon for the date picker white */
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}


/* Buttons */
.btn-dark {
    background-color: #1F2937;
    border: none;
}

.btn-dark:hover {
    background-color: #374151;
}

.btn-darker {
    background-color: #374151; /* gray-700 */
    border: none;
}

.btn-darker:hover {
    background-color: #4B5563; /* gray-600 */
}

.button_blue {
    background-color: #0284c7;             /* bg-sky-500 */
    color: white;
    font-weight: bold;                      /* font-bold */
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;                 /* rounded-lg */
    border: none;
    transition: background-color 0.3s ease-in-out;
}

.button_blue:hover {
    background-color: #036ba1;             /* hover:bg-sky-600 */
}

.button_schedule {
    background-color: #2A3756;
    color: white;
    font-weight: bold;
    padding: .25rem;
    border-radius: 0.5rem;                 /* rounded-lg */
    border: 1px solid grey;
    transition: background-color 0.3s ease-in-out;
}

.button_schedule:hover {
    background-color: grey;             /* hover:bg-sky-600 */
}


.button_full_width {
    width: 100%;
}

.blue_button_full_width {
    width: 100%;
    background-color: #0284c7;         /* bg-sky-600 */
    color: white;
    font-weight: 700;
    padding: 0.75rem 1rem;              /* py-3 */
    border-radius: 0.5rem;              /* rounded-lg */
    border: none;
    transition: background-color 0.2s ease-in-out;
    opacity: 1;
}

.blue_button_full_width:hover {
    background-color: #0369a1;         /* bg-sky-700 */
}

.button_white {
    background-color: white;
    color: black;
    font-weight: bold;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.button_white:hover {
    background-color: #4B5563; /* gray-600 */
    color: white;
}

.button_yellow {
    background-color: #facc15;
    color: black;
    font-weight: bold;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
    text-decoration: none;
}

.button_yellow:hover {
    background-color: #d1a008;
    color: black;
}

.button_red {
    background-color: #ef4444; /* Red-500 */
    color: white;
    font-weight: bold;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: none;
    transition: background-color 0.3s;
}

.button_red:hover {
    background-color: #781219;
}

.button_green {
    background-color: #22c55e; /* Green-500 */
    color: white;
    font-weight: bold;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: none;
    transition: background-color 0.3s;
}

.button_green:hover {
    background-color: #166534; /* Darker green for hover */
}

.button_disabled {
    background-color: #d1d5db; /* Tailwind gray-300 */
    color: #6b7280; /* Tailwind gray-500 */
    font-weight: bold;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: none;
    opacity: 0.6;
    cursor: not-allowed;
}

/* Text Sizes */
.textHeader {
    background-color: #374151;
}

.accordion_header {
    font-size: 1.25rem;
    font-weight: 700;
}



.header_text_xl {
    font-size: 2rem;
    font-weight: 700;                  /* font-bold */
    text-align: center;
    margin-bottom: 1.5rem;             /* mb-6 */
    color: #facc15;                  /* text-yellow-400 */
}

.header_text {
    font-size: 1.5rem;
    font-weight: 700;                  /* font-bold */
    text-align: center;
    margin-bottom: 1rem;             /* mb-6 */
    color: #facc15;                  /* text-yellow-400 */
}

.header_text_std {
    font-size: 1rem;
    font-weight: 700;                  /* font-bold */
    color: #facc15;                  /* text-yellow-400 */
}

.sub_header_text {
    font-size: 1.25rem;
    font-weight: 700;                  /* font-bold */
    text-align: center;
    margin-bottom: .5rem;             /* mb-6 */
    color: #white;                  /* text-yellow-400 */
}

.custom-heading {
    text-align: center;
    margin-bottom: 1rem; /* Approximate to mb-4 in Bootstrap */
}

.std_text {
    font-size: 1rem; /* Approximate to fs-4 */
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.std_text_bold {
    font-size: 1rem; /* Approximate to fs-4 */
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.std_danger {
    font-size: 1rem; /* Approximate to fs-3 */
    color: #dc3545; /* Matches Bootstrap's text-danger */
    text-align: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Spacing */
.div_spacing_4 {
    margin-bottom: 1rem;
}

.modal_placement {
    z-index: 9999;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
}

.main-container {
    margin-top: 1rem; /* Adds separation between navbar and body content */

}

.navbar-collapse {  /* Add spacing to the collapsed menu */
    margin-top: 5px;
    margin-bottom: 5px;
}

.bg-navbar-custom {
    background-color: #0A0F2C !important;
}
/* Modal Popups */
.custom_modal {
    display: none;                          /* You can toggle via JS */
    background-color: #0A0F2C;
    padding: 1rem;                          /* p-8 */
    border-radius: 0.5rem;                  /* rounded-lg */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3); /* shadow-lg */
    opacity: 0.9;
    width: 100%;
    max-width: 32rem;                       /* max-w-lg */
    max-height: 85vh;     /* Prevent overflowing off screen */
    overflow-y: auto;     /* Scrollable if needed */
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -20%);
    z-index: 9999;
    color: white;

    /* Yellow stroke/border */
    border: 1px solid white;               /* 4px yellow border */
}

.body-lock {
    position: fixed;
    width: 100%;
    overflow: hidden;
}


.modal_overlay {
    display: none;                          /* toggle via JS */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);        /* dim background */
    z-index: 9998;
    pointer-events: auto;  /* Make sure overlay eats clicks */
}

/* Hero Section (General and Desktop) */
.custom_panel {
    position: relative; /* Keep it in flow */
    margin: 4rem auto; /* Center horizontally and add vertical spacing */
    padding: 1rem; /* Add inner spacing */
    max-width: 600px; /* Limit width on larger screens */
    text-align: center; /* Center text */
    background-color:  rgba(10, 15, 44, 0.9); /* Semi-transparent background */
    border-radius: 0.5rem; /* Add rounded corners */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3); /* Add shadow */
}

/* Hero Section (Mobile) */
@media (max-width: 768px) {
    .custom_panel {
        width: 90%; /* Ensure the section looks like a box */
        margin: 2rem auto 2rem; /* Add top margin to clear the top bar */
        padding: 1.5rem; /* Adjust inner padding */
        font-size: 1rem; /* Adjust font size for readability */
    }

    .custom_panel ul {
        padding-left: 1rem; /* Less padding for mobile */
        margin: 5px 0;
        line-height: 125%;
    }
}

.custom_panel ul {
    text-align: left;
    padding-left: 3.5rem;
    line-height: 200%;
}

.custom_panel_full_desktop {
    position: relative; /* Keep it in flow */
    width: 95%; /* Full width on desktop */
    margin: 1rem auto; /* Center horizontally and add vertical spacing */
    padding: 1rem; /* Add inner spacing */
    text-align: center; /* Center text */
    background-color:  rgba(10, 15, 44, 0.9); /* Semi-transparent background */
    border-radius: 0.5rem; /* Add rounded corners */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3); /* Add shadow */
}
@media (max-width: 768px) {
    .custom_panel_full_desktop {
        width: 95%; /* Full width on desktop */
        margin: .5rem auto .5rem; /* Add top margin to clear the top bar */
        padding: .5rem; /* Adjust inner padding */
        font-size: 1rem; /* Adjust font size for readability */
    }
}

.custom_sub_panel {  /* Panel for inside a custom panel */
    position: relative; /* Keep it in flow */
    margin: 1rem auto; /* Center horizontally and add vertical spacing */
    padding: 1rem; /* Add inner spacing */
    max-width: 600px; /* Limit width on larger screens */
    text-align: center; /* Center text */
    background-color: #2A3756;


    border-radius: 0.5rem; /* Add rounded corners */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3); /* Add shadow */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}
@media (max-width: 768px) {
    .custom_sub_panel {
        margin: 1rem auto 1rem; /* Add top margin to clear the top bar */
        padding: .5rem; /* Adjust inner padding */
    }
}

.custom_sub_panel_clickable {
    cursor: pointer; /* Make it clear this is clickable */
    position: relative; /* Keep it in flow */
    margin: 1rem auto; /* Center horizontally and add vertical spacing */
    padding: 1rem; /* Add inner spacing */
    max-width: 600px; /* Limit width on larger screens */
    text-align: center; /* Center text */
    background-color: #2A3756;


    border-radius: 0.5rem; /* Add rounded corners */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3); /* Add shadow */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.custom_sub_panel_clickable:hover {
    background-color: #4B5563;
}


.row_title_value_one_line {

}


.hide_on_mobile {
    display: block;
}

@media (max-width: 768px) {
    .hide_on_mobile {
        display: none;
    }
}

.show_on_mobile_only {
    display: none;
}

/* Visible only on mobile */
@media (max-width: 768px) {
    .show_on_mobile_only {
        display: block;
    }
}

.body_standard {
    padding-top: 4.75rem !important;
    background-color: #0A0F2C;
    color: white;

    background-image: url('../images/bg_gt4.png');
    background-size: cover;              /* Stretches to fill */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;        /* Keeps it fixed during scroll */

    overflow-x: hidden;
}
@media (max-width: 768px) {
    .body_standard {
        padding-top: 3.5rem !important;
    }
}

.body-25 {
    padding-top: 4.75rem !important;
    background-color: #0A0F2C;
    color: white;

    background-image: url('../images/bg_metro.png');
    background-size: cover;              /* Stretches to fill */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;        /* Keeps it fixed during scroll */

    overflow-x: hidden;
}
@media (max-width: 768px) {
    .body-25 {
        padding-top: 3.5rem !important;
    }
}

.body-14 {
    padding-top: 4.75rem !important;
    background-color: #0A0F2C;
    color: white;

    background-image: url('../images/bg_gt4.png');
    background-size: cover;              /* Stretches to fill */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;        /* Keeps it fixed during scroll */

    overflow-x: hidden;
}
@media (max-width: 768px) {
    .body-14 {
        padding-top: 3.5rem !important;
    }
}

.body- {
    padding-top: 4.75rem !important;
    background-color: #0A0F2C;
    color: white;

    background-image: url('../images/bg_gt4.png');
    background-size: cover;              /* Stretches to fill */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;        /* Keeps it fixed during scroll */

    overflow-x: hidden;
}
@media (max-width: 768px) {
    .body- {
        padding-top: 3.5rem !important;
    }
}

/* Debug header for checking if mobile css or not
    @media (max-width: 768px) {
        body::before {
            content: "Mobile CSS Active";
            position: fixed;
            top: 0;
            left: 0;
            background: rgba(0, 128, 0, 0.8);
            color: white;
            padding: 0.5rem;
            z-index: 9999;
            font-size: 1rem;
        }
    }
    @media (min-width: 769px) {
        body::before {
            content: "Desktop CSS Active";
            position: fixed;
            top: 0;
            left: 0;
            background: rgba(128, 0, 0, 0.8);
            color: white;
            padding: 0.5rem;
            z-index: 9999;
            font-size: 1rem;
        }
    }
*/

img, .btn, input, .form-control {
    max-width: 100%;
    width: 100%;
}


.nav_bar {
    background-color: #0A0F2C;
    padding: 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap; /* Prevents content from getting cut off */
}

.nav_title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    flex-grow: 1;
}

.nav_buttons {
    display: flex;
    gap: 0.5rem;
}

.league-icons {
    width: 125px;
}
@media (max-width: 768px) {
    .league-icons {
        width: 80px;
    }
}

.bg-it-warning {
    --bs-bg-opacity: 1;
    background-color: #C86500 !important;
}


table {
    width: 100%; /* Make the table take up the full width of its parent */
}

td {
    text-align: center;
    vertical-align: middle; /* center content vertically as well */
}

/* Optional: Basic styling for borders to make the table visible */
table, th, td {
    text-align: center;
    border: 1px solid #ccc;
    border-collapse: collapse; /* Remove double borders */
}

th, td {
    padding: 8px;
}

th {
    background-color: #424040;
    font-weight: bold;
}

.show-more {
    color: yellow;
    cursor: pointer;
    text-decoration: underline;
}

.team-cell {
    position: relative;
    display: grid;
    grid-template-areas: "stack";  /* overlays elements */
    justify-items: start;          /* <-- left-aligns children */
    align-items: center;           /* vertically center */
    overflow: hidden;
    flex: 0 0 240px;               /* fixed width like header */
    height: 40px;                 /* match row height */
}

.team-banner {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;       /* or 'cover' if you want edge-to-edge */
}

.team-name-ssb {
    font-family: 'TacticSans', sans-serif; /* font, with a fallback */
    grid-area: stack;
    padding-left: 8px;    /* spacing from left edge */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-text-stroke-width: .25px; /* Sets the stroke thickness */
    -webkit-text-stroke-color: black; /* Sets the stroke color */
    color: white;
    text-transform: uppercase;
}

.team-name-gt {
    font-family: 'Bolster', sans-serif; /* font, with a fallback */
    grid-area: stack;
    padding-left: 8px;    /* spacing from left edge */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-text-stroke-width: .25px; /* Sets the stroke thickness */
    -webkit-text-stroke-color: black; /* Sets the stroke color */
    color: white;
    text-transform: uppercase;
}

.clickable-row {
    cursor: pointer;
}
.clickable-row:hover {
    opacity: 0.8;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.blinking {
    animation: blink 1s infinite;
    color: #ff0000; /* red */
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.blinking:hover {
    background-color: #ffcccc; /* light red background */
    color: #990000; /* darker red text */
    cursor: pointer;
}

.responsive-table.table,
.responsive-table.table td {
    background-color: #1e1e2f !important;
    color: #ffffff !important;
    border: none !important;
}

.responsive-table.table thead tr {
    border-bottom: 1px solid #ffffff;
}

.responsive-table.table > tbody > tr {
    border-bottom: 1px solid #ffffff;
}

/* Last row - no bottom border */
.responsive-table.table tbody tr:last-child {
    border-bottom: none;
}

/* keep the header styling */
.responsive-table thead th {
    background-color: #0d1645;
    color: #facc15;
    border: none;
}

@media (max-width: 768px) {
    .responsive-table thead {
        display: none; /* Hide table header */
    }
    .responsive-table,
    .responsive-table tbody,
    .responsive-table tr,
    .responsive-table td {
        display: block;
        border: none;
        width: 100%;
    }
    .responsive-table tr {
        margin-bottom: 1rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 0.75rem;
    }
    .responsive-table td {
        text-align: left !important;
        border: none;
        position: relative;
        padding-left: 40%;
        font-size: 0.9rem;
        white-space: normal;
        background: #2A3756;
        color: white;
    }
    .responsive-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0.75rem;
        font-weight: bold;
        color: #facc15;
    }
}