@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ============================================================
   CLUB RESORTO / MEMBER DASHBOARD
   COMPLETE CONSOLIDATED CSS
   CSS ONLY - NO BLADE / PHP / JAVASCRIPT LOGIC CHANGED
   ============================================================ */

/* ============================================================
   01. DESIGN TOKENS
   ============================================================ */
:root {
    --link-clr: #00ca99;
    --text-light: #696969;

    --btn-bg: #00ca99;
    --btn-bgn: #74a82c;
    --btn-bg-hover: #000;

    --primary-textclr: #172033;
    --bgdark: #0b1324;

    --primary-font: 'Work Sans', sans-serif;
    --fsbody: 15px;
    --transition: all .25s ease;

    --sitebg: #ea7024;
    --sitebgn: #fbb03b;
    --white-color: #fff;
    --bglight: #f8fafc;
    --bgbluelight: #f7f9fc;

    /* Dashboard */
    --dashboard-bg: #f4f7fb;
    --dashboard-surface: #ffffff;
    --dashboard-surface-soft: #f8fafc;
    --dashboard-border: #e5eaf1;

    --dashboard-text: #182230;
    --dashboard-muted: #6b7280;

    --dashboard-primary: #0b1324;
    --dashboard-primary-2: #1e293b;

    --dashboard-accent: #d4a72c;
    --dashboard-accent-light: #f3d77c;
    --dashboard-accent-dark: #9b7410;

    --dashboard-green: #159a73;
    --dashboard-orange: #ea7024;
    --dashboard-danger: #dc3545;

    --dashboard-shadow:
        0 16px 45px rgba(15, 23, 42, .08);

    --dashboard-shadow-sm:
        0 7px 22px rgba(15, 23, 42, .06);

    --dashboard-radius: 16px;
    --dashboard-radius-sm: 10px;

    --header-height: 82px;
    --header-height-tablet: 76px;
    --header-height-mobile: 68px;
}


/* ============================================================
   02. RESET / GLOBAL
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    padding: 0;

    font-family: var(--primary-font);
    font-size: var(--fsbody);
    font-weight: 400;
    line-height: 1.7;

    color: var(--dashboard-text);
    background: var(--dashboard-bg);

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;

    overflow-x: hidden;
}

body:has(.header) {
    background: var(--dashboard-bg);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--link-clr);
    text-decoration: none;
    outline: none;
}

a,
.btn,
button,
input,
select,
textarea {
    transition: var(--transition);
}

a:hover {
    color: var(--btn-bg-hover);
    text-decoration: none;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary-textclr);
    font-family: var(--primary-font);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 40px; }
h2,
.heading-h2 { font-size: 40px; }
h3 { font-size: 35px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

strong {
    font-weight: 700;
}

button i,
.btn i,
.hover i {
    vertical-align: middle;
}

button,
.btn,
input[type="submit"],
.hover {
    min-width: 130px;
    padding: 10px 20px;

    cursor: pointer;
    position: relative;

    font-family: var(--primary-font);
    font-size: var(--fsbody);
    line-height: 25px;
    font-weight: 600;

    color: #fff;
    background: var(--btn-bgn);

    border: 0;
    border-radius: 10px;

    box-shadow: none !important;
    white-space: nowrap;
}

button:hover,
.btn:hover,
input[type="submit"]:hover {
    color: #fff;
    background: var(--sitebg);
}

button:focus,
.btn:focus,
input[type="submit"]:focus,
button:focus-visible,
.btn:focus-visible {
    outline: 0;
    box-shadow: none !important;
}

[type="file"] {
    font-size: 16px;
}

.fancybox-button {
    min-width: auto;
}

.tcolor {
    color: var(--link-clr);
}

.bg-site {
    color: var(--primary-textclr);
    background-color: var(--sitebgn);
}

.bg-light {
    background-color: var(--bglight) !important;
}

.bg-dark {
    color: #fff;
    background-color: var(--bgdark) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.text-gray-800 {
    color: var(--dashboard-primary) !important;
}

.font-medium { font-weight: 500; }
.font-light { font-weight: 300; }
.font-semi-bold { font-weight: 600; }

.underline {
    text-decoration: underline;
}

.vam {
    vertical-align: middle;
}

.br-5 {
    border-radius: 5px;
}

.br-10 {
    border-radius: 10px;
}

.box-shadow {
    box-shadow: var(--dashboard-shadow-sm);
}

.object-fit {
    overflow: hidden;
}

.object-fit img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.zoom-hover img {
    transition: all .5s;
}

.zoom-hover:hover img {
    transform: scale(1.08);
}

.list-style {
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-style li {
    display: inline-block;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.display-inline-block {
    display: inline-block;
}

.ms-auto {
    margin-inline-start: auto;
}

.mb-30 {
    margin-bottom: 30px;
}

.lg-hide {
    display: none;
}


/* ============================================================
   03. COMMON SECTION
   ============================================================ */
.main-section {
    position: relative;

    padding: 60px 0;

    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.main-section .container,
.main-section .container-fluid {
    position: relative;
    z-index: 1;
}

.main-section::before {
    content: "";
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background: transparent;
}

.main-title.text-center .heading-style {
    margin: auto;
}

.heading-style {
    position: relative;

    width: 85px;
    height: 7px;

    background: rgba(0, 202, 151, .14);
    border-radius: 50px;
}

.heading-style::before {
    content: "";

    position: absolute;
    top: -2px;
    left: 0;

    width: 10px;
    height: 10px;

    background: var(--btn-bg);
    border-radius: 50px;

    animation: move-dot 2s linear infinite;
}

@keyframes move-dot {
    0%   { left: 0; }
    50%  { left: calc(100% - 10px); }
    100% { left: 0; }
}


/* ============================================================
   04. FULL PAGE LAYOUT / FOOTER FIX
   ============================================================ */

/*
   IMPORTANT:
   .header is fixed, therefore it is removed from normal flow.
   .page-wrapper is the actual application wrapper in master.blade.php.
   The main section grows to fill the available viewport.
   The footer stays at the bottom on short pages.
*/
.page-wrapper {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;

    display: flex;
    flex-direction: column;

    overflow-x: hidden;
}

.page-wrapper > .main-section {
    flex: 1 0 auto;
    width: 100%;
    min-height: 0;
}

.main-section.hero-section {
    flex: 1 0 auto;

    min-height: 0;

    display: flex;
    align-items: flex-start;

    padding-top: 125px;
    padding-bottom: 55px;

    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(212, 167, 44, .10),
            transparent 28%
        ),
        radial-gradient(
            circle at 5% 90%,
            rgba(21, 154, 115, .07),
            transparent 25%
        ),
        var(--dashboard-bg) !important;
}

.main-section.hero-section::before {
    display: none;
}

.hero-container,
.hero-container > .container {
    width: 100%;
}


/* ============================================================
   05. HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 9999;

    width: 100%;
    height: var(--header-height);

    display: flex;
    align-items: center;

    background-image: linear-gradient(180deg, #0a0530 47%, #040114 100%);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 8px 30px rgba(2, 8, 23, .18);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header.sticky {
    top: 0;
    background-image: linear-gradient(180deg, #0a0530 47%, #040114 100%);

    box-shadow:
        0 8px 30px rgba(2, 8, 23, .22);
}

.header .container {
    width: 100%;
}

.header-menu {
    width: 100%;
    min-height: var(--header-height);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
    padding: 7px 0;
}

.header-menu .logo {
    flex: 0 0 18%;
    display: flex;
    align-items: center;
}

.header-menu .logo a {
    display: flex;
    align-items: center;
}

.header-menu .logo img {
    display: block;

    width: auto;
    max-width: 150px;
    max-height: 68px;

    object-fit: contain;
}

.header-menu .nav {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 18px;
}

nav.nav > ul.list-style {
    display: flex;
    align-items: center;
    gap: 6px;

    margin: 0;
}

.nav > ul.list-style li a {
    position: relative;

    min-height: 52px;
    padding: 8px 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    color: rgba(255, 255, 255, .86);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: .25px;

    text-transform: uppercase;

    border-radius: 10px;
}

.nav > ul.list-style li a::after {
    content: "";

    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 3px;

    height: 2px;

    background: var(--dashboard-accent);
    border-radius: 10px;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform .25s ease;
}

.nav > ul.list-style li a:hover {
    color: #fff;
    opacity: 1;
    background: rgba(255, 255, 255, .07);
}

.nav > ul.list-style li a:hover::after {
    transform: scaleX(1);
}

.nav > ul.list-style li a span.icon {
    width: 30px;
    max-width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 30px;
}

.nav > ul.list-style li a span.icon img {
    width: 26px;
    height: 26px;

    object-fit: contain;

    transition: transform .25s ease;
}

.nav > ul.list-style li a:hover span.icon img {
    transform: translateY(-1px) scale(1.06);
}


/* ============================================================
   06. PROFILE / USER DROPDOWN
   ============================================================ */
.drop-down {
    position: relative;
    margin-inline-start: auto;
}

.drop-down > a {
    display: flex;
    align-items: center;
    gap: 5px;

    color: #fff;

    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.usr {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 !important;

    overflow: hidden;

    color: #17120a;
    background:
        linear-gradient(
            135deg,
            var(--dashboard-accent),
            var(--dashboard-accent-light)
        );

    border: 2px solid rgba(212, 167, 44, .72);
    border-radius: 50%;

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, .18);
}

.drop-down ul {
    position: absolute;

    right: 0;
    top: calc(100% + 12px);

    width: 175px;

    margin: 0;
    padding: 7px;

    background: #fff;

    border: 1px solid var(--dashboard-border);
    border-top: 2px solid var(--dashboard-accent);
    border-radius: 12px;

    box-shadow: var(--dashboard-shadow);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(10px);

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
}

.drop-down:hover ul,
.drop-down:focus-within ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.drop-down ul li {
    width: 100%;
}

.drop-down ul li a {
    display: block;

    padding: 10px 13px;

    color: var(--dashboard-text);

    font-size: 14px;
    font-weight: 600;

    border-radius: 8px;
}

.drop-down ul li a:hover {
    color: var(--dashboard-text);
    background: #f7f3e8;
    opacity: 1;
}


/* ============================================================
   07. MOBILE NAVIGATION
   ============================================================ */
.nav-btn {
    display: none;
}

button.openNavCls {
    display: none;
}

@media (max-width: 767.98px) {

    .nav-btn {
        display: inline-flex !important;

        align-items: center;
        justify-content: center;

        min-width: 44px !important;
        width: 44px;
        height: 42px;

        padding: 0 !important;

        color: #fff !important;
        background: rgba(255, 255, 255, .06) !important;

        border: 1px solid rgba(255, 255, 255, .18) !important;
        border-radius: 9px !important;
    }

    .nav-btn {
        font-size: 0 !important;
    }

    .nav-btn i {
        margin: 0 !important;
        font-size: 21px;
    }

    .nav > ul.list-style {
        position: fixed;

        top: 0;
        right: 0;

        width: min(300px, 86vw);
        min-height: 100vh;
        min-height: 100dvh;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        margin: 0;
        padding: 70px 16px 25px;

        background:
            linear-gradient(
                180deg,
                #0b1324,
                #182337
            );

        box-shadow:
            -15px 0 45px rgba(0, 0, 0, .25);

        z-index: 10000;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateX(20px);

        transition:
            opacity .25s ease,
            visibility .25s ease,
            transform .25s ease;
    }

    .nav.openNav > ul.list-style {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .nav > ul.list-style li {
        display: block;
        width: 100%;
    }

    .nav > ul.list-style li a {
        width: 100%;
        min-height: 50px;

        justify-content: flex-start;

        padding: 9px 13px;

        font-size: 13px;

        border-radius: 10px;
    }

    .nav > ul.list-style li a::after {
        display: none;
    }

    .nav > ul.list-style li a:hover {
        background: rgba(255, 255, 255, .08);
    }

    button.openNavCls {
        position: absolute;

        top: 18px;
        right: 16px;

        display: flex;

        align-items: center;
        justify-content: center;

        width: 38px !important;
        height: 38px;

        min-width: 38px !important;

        padding: 0 !important;

        color: #fff !important;
        background: rgba(255, 255, 255, .07) !important;

        border: 1px solid rgba(255, 255, 255, .14) !important;
        border-radius: 50%;

        z-index: 10001;
    }

    button.openNavCls i {
        margin: 0;
        font-size: 20px;
    }
}


/* ============================================================
   08. CONTENT CARDS
   ============================================================ */
.card,
.main-content > .card,
.container-fluid > .card,
.admint-table,
.modal-content {
    border: 1px solid var(--dashboard-border) !important;
    border-radius: var(--dashboard-radius) !important;
    box-shadow: var(--dashboard-shadow-sm);
}

.card {
    overflow: hidden;
    background: var(--dashboard-surface);
}

.main-content > .card,
.container-fluid > .card {
    margin-bottom: 22px;
}

.card-header {
    background:
        linear-gradient(
            180deg,
            #fff,
            #fafbfd
        );

    border-bottom: 1px solid var(--dashboard-border);
}

.card-body {
    padding: 24px;
}

.shadow {
    box-shadow: var(--dashboard-shadow-sm) !important;
}

.shadow-sm {
    box-shadow: 0 4px 14px rgba(15, 23, 42, .05) !important;
}

.rounded-4 {
    border-radius: var(--dashboard-radius) !important;
}


/* ============================================================
   09. STAT CARDS / BOOKING DASHBOARD
   ============================================================ */
.row.g-3 > [class*="col-"] .card,
.row.mb-4 > [class*="col-"] .card {
    position: relative;

    height: 100%;

    padding: 22px !important;

    background:
        linear-gradient(
            145deg,
            #fff,
            #f8fafc
        );

    border-radius: 16px !important;

    box-shadow: var(--dashboard-shadow-sm);

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.row.g-3 > [class*="col-"] .card::before,
.row.mb-4 > [class*="col-"] .card::before {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    top: -28px;
    right: -28px;

    border-radius: 50%;

    background: rgba(212, 167, 44, .09);
}

.row.g-3 > [class*="col-"] .card:hover,
.row.mb-4 > [class*="col-"] .card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(212, 167, 44, .30) !important;

    box-shadow: var(--dashboard-shadow);
}

.row.g-3 > [class*="col-"] .card h6,
.row.mb-4 > [class*="col-"] .card h6 {
    position: relative;
    z-index: 1;

    margin-bottom: 7px;

    color: var(--dashboard-muted);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .65px;
    text-transform: uppercase;
}

.row.g-3 > [class*="col-"] .card h3,
.row.mb-4 > [class*="col-"] .card h3 {
    position: relative;
    z-index: 1;

    margin: 0;

    color: var(--dashboard-primary);

    font-size: 30px;
    font-weight: 800;
}


/* ============================================================
   10. ADMIN / MEMBER TABLES
   ============================================================ */
.admint-table {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: var(--dashboard-surface);
}

.admint-table table {
    width: 100%;
    min-width: 700px;

    margin: 0;

    background: transparent;

    border-collapse: separate;
    border-spacing: 0;
}

.admint-table table tr th,
.admint-table table tr td {
    padding: 14px 16px;

    color: var(--dashboard-text);

    font-size: 14px;

    text-align: left;
    vertical-align: middle;

    border-bottom: 1px solid #edf0f4;
}

.admint-table table tr td:first-child,
.admint-table table tr th:first-child {
    padding-left: 20px;
}

.admint-table table tr td:last-child,
.admint-table table tr th:last-child {
    padding-right: 20px;
}

.admint-table table thead tr th.bg-site,
.admint-table table thead tr th:first-child.bg-site {
    padding: 17px 20px;

    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #0b1324,
            #202b40
        ) !important;

    border: 0;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: .6px;

    text-transform: uppercase;
}

.admint-table table thead tr:not(:first-child) th {
    color: #5b6472;

    background: #f7f8fa;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .55px;

    text-transform: uppercase;
}

.admint-table table tbody tr {
    transition: background .2s ease;
}

.admint-table table tbody tr:hover {
    background: #fbfcfe;
}

.admint-table table tbody tr:last-child td,
.admint-table table tbody tr:last-child th {
    border-bottom: 0;
}

.admint-table .text-center {
    text-align: center !important;
}

.admint-table .tbmember {
    padding: 13px 16px !important;

    color: #6e5310;

    background:
        linear-gradient(
            90deg,
            #f7f3e8,
            #fcfaf5
        );

    border-top: 1px solid #eee4c9;
    border-bottom: 1px solid #eee4c9;

    font-size: 12px;
    letter-spacing: .7px;

    text-transform: uppercase;
}

.admint-table .colon {
    min-width: 70px;
    width: 10%;

    text-align: center !important;
}

.admint-table .w-25 {
    width: 25%;
}

.admint-table span.tag {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 88px;

    padding: 6px 11px;

    color: #fff;

    background: #111827;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .3px;
}

.tag.available,
.badge.bg-success {
    color: #117b5c !important;
    background: #e8f7f1 !important;
    border-color: #cceee2;
}

.tag.inprocess,
.badge.bg-warning {
    color: #996600 !important;
    background: #fff4df !important;
    border-color: #f5dfb1;
}

.tag.expired,
.badge.bg-danger {
    color: #b42331 !important;
    background: #fdebed !important;
    border-color: #f6cbd0;
}

.badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 88px;

    padding: 6px 11px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;
}


/* ============================================================
   11. BOOTSTRAP RESPONSIVE TABLE
   ============================================================ */
.table-responsive {
    border: 0;
    border-radius: 12px;
}

.table-responsive::-webkit-scrollbar,
.admint-table::-webkit-scrollbar {
    height: 7px;
}

.table-responsive::-webkit-scrollbar-track,
.admint-table::-webkit-scrollbar-track {
    background: #eef1f5;
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb,
.admint-table::-webkit-scrollbar-thumb {
    background: #c7ced9;
    border-radius: 10px;
}


/* ============================================================
   12. BUTTONS
   ============================================================ */
.btn,
button,
input[type="submit"],
.hover {
    border-radius: 10px;
    font-weight: 600;
    box-shadow: none !important;
}

.btn-primary,
.btn-success,
.add_new_booking {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #0b1324,
            #26334c
        ) !important;

    border: 1px solid #0b1324 !important;
}

.btn-primary:hover,
.btn-success:hover,
.add_new_booking:hover {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #1a2740,
            #34435f
        ) !important;

    border-color: #1a2740 !important;

    transform: translateY(-1px);
}

.btn-outline-secondary {
    color: #3f4a5a !important;
    background: #fff !important;

    border: 1px solid #d8dee8 !important;
}

.btn-outline-secondary:hover {
    color: #111827 !important;
    background: #f4f6f9 !important;
}

button[type="submit"] {
    min-height: 46px;
}


/* ============================================================
   13. FORMS
   ============================================================ */
form {
    display: inline-block;
    width: 100%;
}

.field {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.field-sm {
    float: left;
    width: 50%;
    padding: 0 10px;
}

.field .field-sm:first-child {
    padding-left: 0;
}

.field .field-sm:last-child {
    padding-right: 0;
}

.form-group label,
.form-label {
    display: block;

    margin-bottom: 8px;

    color: #344054;

    font-size: 13px;
    font-weight: 650;
}

.form-control,
.form-select,
select.form-control {
    min-height: 48px;

    padding: 11px 14px;

    color: var(--dashboard-text);

    background: #fff !important;

    border: 1px solid #dfe4ec !important;
    border-radius: 10px !important;

    box-shadow: none !important;

    font-family: var(--primary-font);
    font-size: 14px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.form-control::placeholder {
    color: #9aa3b1;
}

.form-control:hover,
.form-select:hover {
    border-color: #c7cfdb !important;
}

.form-control:focus,
.form-select:focus {
    color: var(--dashboard-text);

    background: #fff !important;

    border-color: var(--dashboard-accent) !important;

    box-shadow:
        0 0 0 3px rgba(212, 167, 44, .13) !important;
}

textarea.form-control {
    min-height: 91px;
}

select.form-control:not([size]):not([multiple]) {
    height: 49px;
}

.invalid-feedback {
    font-size: 12px;
}

.alert {
    border: 0;
    border-radius: 10px;
    box-shadow: none;
}


/* ============================================================
   14. BOOKING MODAL
   ============================================================ */
.modal-content {
    overflow: hidden;

    background: #fff;

    box-shadow:
        0 25px 70px rgba(15, 23, 42, .20);
}

.modal-header {
    padding: 20px 24px;

    background:
        linear-gradient(
            180deg,
            #fff,
            #fafbfd
        );

    border-bottom: 1px solid var(--dashboard-border);
}

.modal-header .modal-title {
    color: var(--dashboard-primary);

    font-size: 20px;
    font-weight: 700;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 16px 24px;

    border-top: 1px solid var(--dashboard-border);
}

.modal-backdrop.show {
    opacity: .55;
}


/* ============================================================
   15. BOOKING PAGE SECONDARY NAVBAR
   ============================================================ */
.navbar {
    border-radius: 12px;
}

.navbar.bg-white,
.navbar.navbar-light {
    border: 1px solid var(--dashboard-border);
    box-shadow: 0 5px 18px rgba(15, 23, 42, .04);
}

.navbar .navbar-brand {
    color: var(--dashboard-primary);
    font-weight: 700;
}

.navbar .btn {
    min-width: auto;
}


/* ============================================================
   16. EMPTY DATA STATE
   ============================================================ */
.no-data-box {
    max-width: 420px;

    margin: 20px auto;
    padding: 35px 20px;

    text-align: center;

    background: #fafbfd;

    border: 1px dashed #d8dee8;
    border-radius: 14px;
}

.no-data-box i {
    display: block;

    margin-bottom: 12px;

    color: #b0b8c5;

    font-size: 40px;
}

.no-data-box h6 {
    margin-bottom: 6px;

    color: #344054;

    font-weight: 700;
}

.no-data-box p {
    margin: 0;

    color: #8a94a4;

    font-size: 13px;
}


/* ============================================================
   17. FOOTER
   ============================================================ */
.page-wrapper > .footer {
    flex-shrink: 0;

    width: 100%;

    margin-top: auto;
}

.footer {
    position: relative;

    width: 100%;

    padding: 22px 0;

    color: rgba(255, 255, 255, .72);

   background-image: linear-gradient(180deg, #03020a 47%, #040114 100%);

    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-copyrigh {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: rgba(255, 255, 255, .72);

    font-size: 12px;
}

.footer-copyrigh p {
    margin: 0;
}

.footer-copyrigh a {
    color: #f0d276;
    font-weight: 600;
}

.footer-copyrigh a:hover {
    color: #fff;
}


/* ============================================================
   18. LOGIN PAGE
   ============================================================ */
.login-page {
    min-height: 100vh;
    min-height: 100dvh;

    display: flex;
    align-items: center;

    background: #f6f8fb;
}

.login-page > div {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;

    background: #fff;
}

.login-left {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(11, 19, 36, .94),
            rgba(30, 39, 58, .86)
        ),
        url(../assets/img/memberbg.jpg);

    background-position: center;
    background-size: cover;
}

.login-left::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -90px;
    bottom: -90px;

    border: 1px solid rgba(240, 210, 118, .25);
    border-radius: 50%;
}

.form-container {
    width: min(450px, calc(100% - 50px));

    padding: 30px;

    text-align: center;

    background: #fff;

    border: 1px solid var(--dashboard-border);
    border-radius: 18px;

    box-shadow: var(--dashboard-shadow);
}

.form-container h1 {
    margin-bottom: 10px;

    color: var(--dashboard-primary);
    font-weight: 700;
}

.form-container p {
    margin-top: 0;
}

.form-container form {
    margin-top: 27px;
}

.login-page .field .form-control {
    min-height: 50px;

    background: #fff;

    border: 1px solid #dfe4ec !important;
    border-radius: 10px !important;
}

.login-page button {
    width: 100%;
    min-height: 50px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #0b1324,
            #26334c
        );

    border-radius: 10px;

    font-weight: 700;
}

.login-page button:hover {
    background:
        linear-gradient(
            135deg,
            #1a2740,
            #34435f
        );
}


/* ============================================================
   19. CONTAINER SYSTEM
   ============================================================ */
.container {
    width: 100%;
    max-width: 100%;

    margin-right: auto;
    margin-left: auto;

    padding-right: 15px;
    padding-left: 15px;
}

.container-fluid {
    width: 100%;
}


/* ============================================================
   20. MARQUEE - KEPT FOR EXISTING HEADER OPTION
   ============================================================ */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee .marquee-item {
    position: relative;

    display: inline-block;

    left: 100%;

    color: #fff;

    font-size: 15px;

    text-transform: uppercase;

    animation:
        marquee 25s linear infinite;
}

.marquee .marquee-item:nth-child(1) {
    animation-delay: 0s;
}

.marquee .marquee-item:nth-child(2) {
    animation-delay: .3s;
}

.marquee .marquee-item:nth-child(3) {
    animation-delay: .6s;
}

.marquee .marquee-item:nth-child(4) {
    animation-delay: 1.2s;
}

.marquee .marquee-item:nth-child(5) {
    animation-delay: 1.6s;
}

@keyframes marquee {
    0%   { left: 100%; }
    100% { left: -100%; }
}



/* ============================================================
   LEGACY / SHARED COMPONENT COMPATIBILITY
   These rules keep existing classes working without changing
   Blade/PHP/JavaScript logic.
   ============================================================ */

.hover {
    overflow: hidden;
}

.hover span {
    position: relative;
    z-index: 1;
}

.hover::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 100%;

    background: var(--sitebg);

    border-radius: 10px;

    opacity: 0;
    transform: scale(0);

    transition: var(--transition);
}

.hover:hover::before {
    opacity: 1;
    transform: scale(1);
}

.hover:hover {
    color: #fff;
}

.btn i,
button i,
.hover i {
    margin-inline-end: 5px;
    vertical-align: middle;
}

.btn-2 {
    border-radius: 30px;
}

.outline-btn {
    background: transparent;
    border: 2px solid;
}

.outline-btn-white {
    border-color: #fff;
}

.outline-btn:hover {
    color: #fff;
    background: var(--btn-bg);
    border-color: var(--btn-bg);
}

.text-upper {
    text-transform: uppercase;
}

blockquote {
    position: relative;

    padding: 25px 48px 25px 25px;

    line-height: 28px;
    font-weight: 400;

    background: #f7f9fc;

    border-left: 4px solid var(--dashboard-primary);
}

blockquote strong {
    font-weight: 500;
}

blockquote::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    border-style: solid;
    border-width: 0 41px 41px 0;

    border-color: #ddd #fff;

    transition: all ease .5s;
}

.sm-container {
    padding-right: 85px;
    padding-left: 85px;
}

/* Preserve the original select-arrow behavior */
select.form-control:not([size]):not([multiple]) {
    -webkit-appearance: none;
    appearance: none;

    background-image: url(images/select-arrow.png);
    background-repeat: no-repeat;
    background-position: 95% center;
}

/* Keep old table alignment helpers available */
.tbmember {
    text-align: center !important;
    text-transform: uppercase !important;
}

/* Generic responsive image behavior */
.object-fit img {
    object-fit: cover;
}


/* ============================================================
   21. ACCESSIBILITY
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(212, 167, 44, .28);
    outline-offset: 2px;
}


/* ============================================================
   22. TABLET - 1199px
   ============================================================ */
@media (max-width: 1199px) {

    .header {
        height: var(--header-height-tablet);
    }

    .header-menu {
        min-height: var(--header-height-tablet);
        gap: 15px;
    }

    .header-menu .logo {
        flex: 0 0 15%;
    }

    .header-menu .logo img {
        max-width: 125px;
        max-height: 60px;
    }

    .header-menu .nav {
        gap: 10px;
    }

    nav.nav > ul.list-style {
        gap: 3px;
    }

    .nav > ul.list-style li a {
        padding: 7px 8px;
        font-size: 12px;
    }

    .nav > ul.list-style li a span.icon {
        width: 25px;
        max-width: 25px;
    }

    .nav > ul.list-style li a span.icon img {
        width: 23px;
        height: 23px;
    }

    .admint-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .admint-table table {
        min-width: 700px;
    }

    .admint-table table tr td,
    .admint-table table tr th {
        min-width: 120px;
    }

    .main-section.hero-section {
        padding-top: 112px;
    }
}


/* ============================================================
   23. DESKTOP CONTAINERS
   ============================================================ */
@media (min-width: 767.98px) {
    .container {
        max-width: 100%;
    }

    .lg-hide {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }

    .container-fluid {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media (min-width: 1400px) {
    .container,
    .container-lg {
        max-width: 1320px;
    }
}


/* ============================================================
   24. 1024px / SMALL DESKTOP
   ============================================================ */
@media (max-width: 1024px) {

    .container {
        max-width: 100%;
    }

    .header-menu {
        gap: 8px;
    }

    .nav > ul.list-style {
        gap: 2px;
    }

    .nav > ul.list-style li a {
        padding: 7px 6px;
    }

    .footer-copyrigh {
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
}


/* ============================================================
   25. MOBILE - 767.98px
   ============================================================ */
@media (max-width: 767.98px) {

    .header {
        height: var(--header-height-mobile);
    }

    .header-menu {
        min-height: var(--header-height-mobile);
        padding: 6px 0;

        gap: 8px;
    }

    .header-menu .logo {
        flex: 1;
        min-width: 0;
    }

    .header-menu .logo img {
        max-width: 108px;
        max-height: 50px;
    }

    .header-menu .nav {
        flex: 0 0 auto;

        justify-content: flex-end;

        gap: 8px;
    }

    .drop-down {
        margin-inline-start: 0;
    }

    .usr {
        width: 40px;
        height: 40px;

        font-size: 12px;
    }

    .main-section.hero-section {
        min-height: 0;

        padding-top: 92px;
        padding-bottom: 30px;
    }

    .main-section.hero-section > .hero-container > .container,
    .hero-container > .container {
        padding-right: 12px;
        padding-left: 12px;
    }

    .card-body {
        padding: 18px;
    }

    .row.g-3 > [class*="col-"] .card,
    .row.mb-4 > [class*="col-"] .card {
        padding: 17px !important;
    }

    .row.g-3 > [class*="col-"] .card h3,
    .row.mb-4 > [class*="col-"] .card h3 {
        font-size: 25px;
    }

    .admint-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;

        border-radius: 12px !important;
    }

    .admint-table table {
        min-width: 680px;
    }

    .admint-table table tr th,
    .admint-table table tr td {
        padding: 11px 12px;
        font-size: 13px;
    }

    .admint-table table tr td:first-child,
    .admint-table table tr th:first-child {
        padding-left: 14px;
    }

    .admint-table table tr td:last-child,
    .admint-table table tr th:last-child {
        padding-right: 14px;
    }

    .modal-dialog {
        margin: 12px;
    }

    .modal-body {
        padding: 18px;
    }

    .modal-header {
        padding: 16px 18px;
    }

    .modal-footer {
        padding: 14px 18px;
    }

    .form-container {
        width: calc(100% - 28px);
        padding: 22px;
    }

    .field-sm {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .footer {
        padding: 18px 12px;
    }

    .footer-copyrigh {
        gap: 7px;
        line-height: 1.5;
    }

    .footer-copyrigh p {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}


/* ============================================================
   26. SMALL MOBILE - 575px
   ============================================================ */
@media (max-width: 575.98px) {

    body {
        font-size: 14px;
    }

    .header-menu .logo img {
        max-width: 96px;
        max-height: 46px;
    }

    .nav-btn {
        width: 42px;
        height: 40px;
        min-width: 42px !important;
    }

    .usr {
        width: 38px;
        height: 38px;
    }

    .main-section.hero-section {
        padding-top: 88px;
        padding-bottom: 24px;
    }

    .card-body {
        padding: 15px;
    }

    .admint-table table {
        min-width: 640px;
    }

    .admint-table table tr th,
    .admint-table table tr td {
        padding: 10px;
        font-size: 12px;
    }

    .admint-table table thead tr th.bg-site {
        font-size: 13px;
        padding: 14px;
    }

    .modal-dialog {
        margin: 8px;
    }

    .modal-body {
        padding: 15px;
    }

    .modal-header {
        padding: 14px 15px;
    }

    .form-container {
        width: calc(100% - 20px);
        padding: 18px;
    }

    .footer-copyrigh {
        font-size: 11px;
    }
}


/* ============================================================
   27. VERY SMALL DEVICES - 400px
   ============================================================ */
@media (max-width: 400px) {

    .header-menu .logo img {
        max-width: 88px;
        max-height: 44px;
    }

    .nav-btn {
        width: 40px;
        height: 38px;
        min-width: 40px !important;
    }

    .usr {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .nav > ul.list-style {
        width: 88vw;
    }

    .main-section.hero-section {
        padding-top: 84px;
    }

    .admint-table table {
        min-width: 600px;
    }
}


/* ============================================================
   28. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ============================================================
   29. BOOKING PAGE - COMPLETE COMPATIBILITY / UI
   Existing booking.blade.php uses:
   .main-content, .navbar, .row, .card, .table-responsive,
   .table, .badge, #bookingRequestModal and bookingRequestForm.
   These rules style those existing classes without changing
   any Blade/PHP/JavaScript logic.
   ============================================================ */

/* Booking content area */
.main-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.main-content > .navbar {
    min-height: 58px;

    display: flex;
    align-items: center;

    padding: 10px 16px !important;

    background: rgba(255, 255, 255, .96) !important;

    border: 1px solid var(--dashboard-border) !important;
    border-radius: 14px !important;

    box-shadow: var(--dashboard-shadow-sm);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.main-content > .navbar h4 {
    color: var(--dashboard-primary);
    font-size: 19px;
    font-weight: 750;
}

#collapseSidebar,
#sidebarToggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 40px !important;
    width: 40px;
    height: 40px;

    padding: 0 !important;

    color: var(--dashboard-primary) !important;
    background: #fff !important;

    border: 1px solid var(--dashboard-border) !important;
    border-radius: 9px !important;
}

#collapseSidebar:hover,
#sidebarToggle:hover {
    color: #fff !important;
    background: var(--dashboard-primary) !important;
    border-color: var(--dashboard-primary) !important;
}


/* Booking statistic cards */
.main-content .row.g-3.mb-4 {
    margin-right: -7px;
    margin-left: -7px;
}

.main-content .row.g-3.mb-4 > [class*="col-"] {
    padding-right: 7px;
    padding-left: 7px;
}

.main-content .row.g-3.mb-4 > [class*="col-"] .card {
    min-height: 122px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    text-align: left !important;
}

.main-content .row.g-3.mb-4 > [class*="col-"] .card h6 {
    margin-bottom: 8px;

    color: var(--dashboard-muted);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .7px;
}

.main-content .row.g-3.mb-4 > [class*="col-"] .card h3 {
    margin: 0;

    color: var(--dashboard-primary);

    font-size: 31px;
    line-height: 1;
}


/* Individual booking stat accents */
.main-content .row.g-3.mb-4 > [class*="col-"]:nth-child(1) .card::after,
.main-content .row.g-3.mb-4 > [class*="col-"]:nth-child(2) .card::after,
.main-content .row.g-3.mb-4 > [class*="col-"]:nth-child(3) .card::after,
.main-content .row.g-3.mb-4 > [class*="col-"]:nth-child(4) .card::after {
    content: "";

    position: absolute;

    left: 0;
    top: 18px;
    bottom: 18px;

    width: 4px;

    border-radius: 0 6px 6px 0;
}

.main-content .row.g-3.mb-4 > [class*="col-"]:nth-child(1) .card::after {
    background: var(--dashboard-primary);
}

.main-content .row.g-3.mb-4 > [class*="col-"]:nth-child(2) .card::after {
    background: var(--dashboard-green);
}

.main-content .row.g-3.mb-4 > [class*="col-"]:nth-child(3) .card::after {
    background: var(--dashboard-accent);
}

.main-content .row.g-3.mb-4 > [class*="col-"]:nth-child(4) .card::after {
    background: var(--dashboard-danger);
}


/* Recent booking card */
.main-content > .card.p-3 {
    padding: 0 !important;

    overflow: hidden;

    background: #fff;
}

.main-content > .card.p-3 > .d-flex {
    min-height: 76px;

    margin: 0 !important;
    padding: 16px 20px;

    border-bottom: 1px solid var(--dashboard-border);

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fafbfd
        );
}

.main-content > .card.p-3 > .d-flex h5 {
    margin: 0;

    color: var(--dashboard-primary);

    font-size: 17px;
    font-weight: 750;
}

.main-content > .card.p-3 > .d-flex .btn {
    min-height: 42px;
    min-width: auto;

    padding: 8px 16px;

    font-size: 13px;
}


/* Booking table */
.main-content .table-responsive {
    width: 100%;

    margin: 0;

    overflow-x: auto;
    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;

    border-radius: 0;
}

.main-content .table-responsive::-webkit-scrollbar {
    height: 7px;
}

.main-content .table-responsive::-webkit-scrollbar-track {
    background: #eef1f5;
}

.main-content .table-responsive::-webkit-scrollbar-thumb {
    background: #c7ced9;
    border-radius: 10px;
}

.main-content table.table {
    width: 100%;
    min-width: 850px;

    margin: 0 !important;

    color: var(--dashboard-text);

    border-color: var(--dashboard-border);
    vertical-align: middle;
}

.main-content table.table > :not(caption) > * > * {
    padding: 14px 15px;

    border-bottom-color: #edf0f4;
}

.main-content table.table thead th {
    color: #566071;

    background: #f7f8fa !important;

    border-bottom: 1px solid #e3e7ed;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .65px;

    text-transform: uppercase;

    white-space: nowrap;
}

.main-content table.table thead th:first-child {
    padding-left: 20px;
}

.main-content table.table tbody td {
    color: #344054;

    font-size: 13px;

    white-space: nowrap;
}

.main-content table.table tbody tr {
    transition:
        background .2s ease,
        box-shadow .2s ease;
}

.main-content table.table.table-hover > tbody > tr:hover > * {
    color: #182230;
    background: #fbfcfe;
}

.main-content table.table tbody tr:last-child td {
    border-bottom: 0;
}


/* Booking table column sizing */
.main-content table.table th:nth-child(1),
.main-content table.table td:nth-child(1) {
    width: 55px;
    text-align: center;
}

.main-content table.table th:nth-child(2),
.main-content table.table td:nth-child(2) {
    min-width: 150px;
}

.main-content table.table th:nth-child(3),
.main-content table.table td:nth-child(3),
.main-content table.table th:nth-child(4),
.main-content table.table td:nth-child(4) {
    min-width: 115px;
}

.main-content table.table th:nth-child(5),
.main-content table.table td:nth-child(5),
.main-content table.table th:nth-child(6),
.main-content table.table td:nth-child(6),
.main-content table.table th:nth-child(7),
.main-content table.table td:nth-child(7) {
    min-width: 75px;
    text-align: center;
}

.main-content table.table th:nth-child(8),
.main-content table.table td:nth-child(8) {
    min-width: 110px;
    text-align: center;
}

.main-content table.table th:nth-child(9),
.main-content table.table td:nth-child(9) {
    min-width: 170px;
}


/* Booking status badges */
.main-content table.table .badge {
    min-width: 82px;
    min-height: 28px;

    padding: 5px 10px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .3px;
    text-transform: capitalize;
}

.main-content table.table .badge.bg-success {
    color: #117b5c !important;
    background: #e8f7f1 !important;
    border: 1px solid #cceee2;
}

.main-content table.table .badge.bg-warning {
    color: #996600 !important;
    background: #fff4df !important;
    border: 1px solid #f5dfb1;
}

.main-content table.table .badge.bg-danger {
    color: #b42331 !important;
    background: #fdebed !important;
    border: 1px solid #f6cbd0;
}


/* Download voucher link */
.main-content table.table td a {
    color: var(--dashboard-primary);

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;
}

.main-content table.table td a:hover {
    color: var(--dashboard-accent-dark);
}

.main-content table.table td a i {
    margin-right: 5px;

    color: var(--dashboard-accent-dark);
}


/* Empty booking state */
.main-content table.table .no-data-box {
    width: min(360px, 100%);

    margin: 0 auto;
    padding: 25px 15px;

    background: transparent;

    border: 0;
    box-shadow: none;
}

.main-content table.table .no-data-box i {
    color: #c0c7d1;
    font-size: 38px;
}

.main-content table.table .no-data-box h6 {
    margin-bottom: 5px;

    color: #344054;

    font-size: 14px;
}

.main-content table.table .no-data-box p {
    color: #8993a2;
    font-size: 12px;
}


/* ============================================================
   30. BOOKING REQUEST MODAL
   ============================================================ */
#bookingRequestModal .modal-dialog {
    width: calc(100% - 30px);
    max-width: 820px;
}

#bookingRequestModal .modal-content {
    overflow: hidden;

    border: 0 !important;
    border-radius: 18px !important;

    background: #fff;

    box-shadow:
        0 30px 80px rgba(15, 23, 42, .25);
}

#bookingRequestModal .modal-header {
    min-height: 70px;

    padding: 17px 24px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #0b1324,
            #202c42
        );

    border-bottom: 0;
}

#bookingRequestModal .modal-title {
    margin: 0;

    color: #fff;

    font-size: 18px;
    font-weight: 750;
}

#bookingRequestModal .btn-close {
    min-width: 36px !important;
    width: 36px;
    height: 36px;

    margin: 0;
    padding: 0;

    opacity: 1;

    background-color: rgba(255,255,255,.10);

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;

    filter: invert(1) grayscale(100%) brightness(200%);
}

#bookingRequestModal .btn-close:hover {
    background-color: rgba(255,255,255,.20);
}

#bookingRequestModal .modal-body {
    padding: 25px;
}

#bookingRequestModal .modal-body .row {
    margin-top: -3px;
}

#bookingRequestModal .modal-body .form-label {
    margin-bottom: 7px;

    color: #344054;

    font-size: 12px;
    font-weight: 750;

    letter-spacing: .15px;
}

#bookingRequestModal .modal-body .form-label .text-danger {
    color: #d92d20 !important;
}

#bookingRequestModal .modal-body .form-control,
#bookingRequestModal .modal-body .form-select {
    width: 100%;
    min-height: 48px;

    padding: 10px 13px;

    color: #182230;

    background-color: #fff !important;

    border: 1px solid #dfe4ec !important;
    border-radius: 10px !important;

    font-size: 13px;

    box-shadow: none !important;
}

#bookingRequestModal .modal-body .form-control:hover,
#bookingRequestModal .modal-body .form-select:hover {
    border-color: #c6ceda !important;
}

#bookingRequestModal .modal-body .form-control:focus,
#bookingRequestModal .modal-body .form-select:focus {
    border-color: var(--dashboard-accent) !important;

    box-shadow:
        0 0 0 3px rgba(212,167,44,.12) !important;
}

#bookingRequestModal .modal-body .form-control.is-valid,
#bookingRequestModal .modal-body .form-select.is-valid {
    border-color: #9ed9c5 !important;
}

#bookingRequestModal .modal-body .form-control.is-invalid,
#bookingRequestModal .modal-body .form-select.is-invalid {
    border-color: #e5a4ab !important;
}

#bookingRequestModal .invalid-feedback {
    margin-top: 5px;

    color: #b42331;

    font-size: 11px;
    line-height: 1.4;
}

#bookingRequestModal .alert {
    margin-bottom: 20px;

    padding: 13px 15px;

    font-size: 12px;

    border: 1px solid #f3c5ca;
    border-radius: 10px;
}

#bookingRequestModal .modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 10px;

    padding: 15px 24px;

    background: #fafbfd;

    border-top: 1px solid var(--dashboard-border);
}

#bookingRequestModal .modal-footer .btn {
    min-height: 43px;
    min-width: 110px;

    padding: 8px 17px;

    font-size: 13px;
}

#bookingRequestModal #bookingSubmitBtn {
    min-width: 160px;
    position: relative;
}

#bookingRequestModal #bookingSubmitBtn:disabled {
    cursor: not-allowed;
    opacity: .75;
}

#bookingRequestModal #bookingSubmitBtn .spinner-border {
    width: 1rem;
    height: 1rem;

    vertical-align: -0.15em;
}

#bookingRequestModal .btn-outline-secondary {
    color: #475467 !important;

    background: #fff !important;

    border: 1px solid #d8dee8 !important;
}

#bookingRequestModal .btn-outline-secondary:hover {
    color: #182230 !important;

    background: #f4f6f9 !important;

    border-color: #c7cfdb !important;
}


/* Bootstrap modal backdrop */
.modal-backdrop.show {
    opacity: .58;
}


/* ============================================================
   31. EXISTING LEGACY ADMINT-TABLE - PRESERVED
   ============================================================ */
.admint-table {
    width: 100%;

    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    background: #fff;

    border: 1px solid var(--dashboard-border) !important;
    border-radius: 16px !important;

    box-shadow: var(--dashboard-shadow-sm);
}

.admint-table table {
    width: 100%;
    min-width: 650px;

    margin: 0;

    background: rgba(255,255,255,.98);

    border-collapse: collapse;
}

.admint-table table tr td,
.admint-table table tr th {
    padding: 12px 15px;

    text-align: left;
    vertical-align: middle;

    border-bottom: 1px solid #edf0f4;
}

.admint-table table thead tr th {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #0b1324,
            #202c42
        ) !important;

    font-size: 13px;
    font-weight: 750;

    letter-spacing: .5px;

    text-transform: uppercase;
}

.admint-table table thead tr th.bg-site {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #0b1324,
            #202c42
        ) !important;
}

.admint-table table tbody tr {
    background: #fff;
}

.admint-table table tbody tr:hover {
    background: #fbfcfe;
}

.admint-table table tbody tr th {
    line-height: normal;
}

.admint-table .w-25,
.w-25 {
    width: 25%;
}

.admint-table .colon,
.colon {
    min-width: 100px;

    text-align: center !important;
}

.admint-table .text-upper,
.text-upper {
    text-transform: uppercase;
}

.admint-table span.tag {
    min-width: 100px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 5px 10px;

    color: #fff;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;

    text-align: center;
    text-transform: capitalize;
}

.admint-table .tag.available,
.tag.available {
    color: #117b5c !important;
    background: #e8f7f1 !important;
    border: 1px solid #cceee2;
}

.admint-table .tag.inprocess,
.tag.inprocess {
    color: #996600 !important;
    background: #fff4df !important;
    border: 1px solid #f5dfb1;
}

.admint-table .tag.expired,
.tag.expired {
    color: #b42331 !important;
    background: #fdebed !important;
    border: 1px solid #f6cbd0;
}

.admint-table .tbmember,
.tbmember {
    padding: 13px 16px !important;

    color: #6e5310;

    background:
        linear-gradient(
            90deg,
            #f7f3e8,
            #fcfaf5
        ) !important;

    border-top: 1px solid #eee4c9;
    border-bottom: 1px solid #eee4c9;

    font-size: 12px;

    letter-spacing: .7px;

    text-align: center !important;
    text-transform: uppercase !important;
}


/* ============================================================
   32. RESPONSIVE BOOKING PAGE
   ============================================================ */
@media (max-width: 991.98px) {

    .main-content > .navbar {
        min-height: 55px;
    }

    .main-content > .navbar h4 {
        font-size: 17px;
    }

    .main-content .row.g-3.mb-4 > [class*="col-"] .card {
        min-height: 110px;
    }

    #bookingRequestModal .modal-dialog {
        max-width: 760px;
    }
}


@media (max-width: 767.98px) {

    .main-content > .navbar {
        padding: 9px 11px !important;
        border-radius: 12px !important;
    }

    .main-content > .navbar h4 {
        margin-left: 8px !important;
        font-size: 16px;
    }

    .main-content > .navbar .ms-auto {
        gap: 6px;
    }

    .main-content > .navbar .ms-auto > i {
        display: none;
    }

    .main-content > .navbar .ms-auto img {
        width: 35px !important;
        height: 35px !important;
    }

    .main-content .row.g-3.mb-4 {
        margin-right: -5px;
        margin-left: -5px;
    }

    .main-content .row.g-3.mb-4 > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }

    .main-content .row.g-3.mb-4 > [class*="col-"] .card {
        min-height: 105px;

        padding: 16px !important;
    }

    .main-content .row.g-3.mb-4 > [class*="col-"] .card h6 {
        font-size: 10px;
        letter-spacing: .45px;
    }

    .main-content .row.g-3.mb-4 > [class*="col-"] .card h3 {
        font-size: 25px;
    }

    .main-content > .card.p-3 > .d-flex {
        min-height: 0;

        align-items: flex-start;

        gap: 12px;

        padding: 14px;
    }

    .main-content > .card.p-3 > .d-flex h5 {
        font-size: 15px;
    }

    .main-content > .card.p-3 > .d-flex .btn {
        min-height: 38px;
        padding: 7px 11px;

        font-size: 11px;
    }

    .main-content table.table {
        min-width: 820px;
    }

    .main-content table.table > :not(caption) > * > * {
        padding: 11px 12px;
    }

    .main-content table.table tbody td {
        font-size: 12px;
    }

    #bookingRequestModal .modal-dialog {
        width: calc(100% - 16px);

        margin: 8px auto;
    }

    #bookingRequestModal .modal-header {
        min-height: 60px;
        padding: 14px 16px;
    }

    #bookingRequestModal .modal-title {
        font-size: 16px;
    }

    #bookingRequestModal .modal-body {
        padding: 17px;
    }

    #bookingRequestModal .modal-footer {
        padding: 12px 17px;
    }
}


@media (max-width: 575.98px) {

    .main-content > .navbar h4 {
        font-size: 15px;
    }

    #collapseSidebar,
    #sidebarToggle {
        width: 38px;
        height: 38px;
        min-width: 38px !important;
    }

    .main-content .row.g-3.mb-4 > [class*="col-"] .card {
        min-height: 96px;
        padding: 13px !important;
    }

    .main-content .row.g-3.mb-4 > [class*="col-"] .card h6 {
        max-width: 100%;

        margin-bottom: 6px;

        font-size: 9px;
        line-height: 1.35;
    }

    .main-content .row.g-3.mb-4 > [class*="col-"] .card h3 {
        font-size: 22px;
    }

    .main-content > .card.p-3 > .d-flex {
        flex-wrap: wrap;
    }

    .main-content > .card.p-3 > .d-flex h5 {
        width: 100%;
    }

    .main-content > .card.p-3 > .d-flex .btn {
        width: 100%;
    }

    .main-content table.table {
        min-width: 790px;
    }

    #bookingRequestModal .modal-body .form-control,
    #bookingRequestModal .modal-body .form-select {
        min-height: 46px;
    }

    #bookingRequestModal .modal-footer {
        flex-direction: column-reverse;
    }

    #bookingRequestModal .modal-footer .btn {
        width: 100%;
    }

    #bookingRequestModal #bookingSubmitBtn {
        width: 100%;
    }

    .admint-table table {
        min-width: 600px;
    }

    .admint-table table tr td,
    .admint-table table tr th {
        padding: 10px 11px;
        font-size: 12px;
    }
}


@media (max-width: 400px) {

    .main-content > .navbar {
        padding: 8px !important;
    }

    .main-content > .navbar h4 {
        font-size: 14px;
    }

    .main-content .row.g-3.mb-4 > [class*="col-"] .card {
        padding: 11px !important;
    }

    .main-content .row.g-3.mb-4 > [class*="col-"] .card h3 {
        font-size: 20px;
    }

    .main-content table.table {
        min-width: 760px;
    }

    #bookingRequestModal .modal-body {
        padding: 14px;
    }
}

/* ============================================================
   FINAL BOOTSTRAP MODAL STACKING FIX
   The backdrop must stay BELOW the modal.
   This prevents the grey overlay from covering the form/buttons.
   ============================================================ */

.modal-backdrop {
    z-index: 1990 !important;
}

.modal-backdrop.show {
    z-index: 1990 !important;
    opacity: .55 !important;
}

.modal,
#bookingRequestModal {
    position: fixed !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    z-index: 2000 !important;

    width: 100% !important;
    height: 100% !important;

    display: none;

    overflow-x: hidden;
    overflow-y: auto;
}

.modal.show,
#bookingRequestModal.show {
    display: block !important;
    opacity: 1 !important;

    z-index: 2000 !important;
}

#bookingRequestModal .modal-dialog {
    position: relative !important;

    z-index: 2001 !important;

    pointer-events: none !important;
}

#bookingRequestModal .modal-content {
    position: relative !important;

    z-index: 2002 !important;

    pointer-events: auto !important;
}

/* Everything inside the modal remains clickable */
#bookingRequestModal button,
#bookingRequestModal a,
#bookingRequestModal input,
#bookingRequestModal select,
#bookingRequestModal textarea,
#bookingRequestModal .form-control,
#bookingRequestModal .form-select {
    pointer-events: auto !important;
}

/* Prevent the page behind the modal from receiving clicks */
.modal-open > *,
body.modal-open .page-wrapper {
    pointer-events: none;
}

body.modal-open .modal,
body.modal-open .modal *,
body.modal-open .modal-backdrop {
    pointer-events: auto;
}

/* The backdrop itself should never cover the modal */
body.modal-open .modal-backdrop {
    z-index: 1990 !important;
}

body.modal-open .modal {
    z-index: 2000 !important;
}


/* ============================================================
   BOOKING MODAL VISUAL CLARITY
   ============================================================ */

#bookingRequestModal .modal-header,
#bookingRequestModal .modal-body,
#bookingRequestModal .modal-footer {
    opacity: 1 !important;
}

#bookingRequestModal .modal-body {
    color: #182230;

    background: #ffffff !important;
}

#bookingRequestModal .modal-footer {
    background: #fafbfd !important;
}

#bookingRequestModal .modal-footer .btn {
    position: relative;

    z-index: 2005 !important;

    pointer-events: auto !important;
    cursor: pointer !important;
}

#bookingRequestModal .modal-footer #bookingSubmitBtn {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #0b1324,
            #26334c
        ) !important;

    border-color: #0b1324 !important;
}

#bookingRequestModal .modal-footer .btn-outline-secondary {
    color: #344054 !important;

    background: #fff !important;

    border-color: #d8dee8 !important;
}


/* ============================================================
   MOBILE STACKING
   ============================================================ */

@media (max-width: 767.98px) {

    .modal,
    #bookingRequestModal {
        z-index: 2000 !important;
    }

    #bookingRequestModal .modal-dialog {
        z-index: 2001 !important;
    }

    #bookingRequestModal .modal-content {
        z-index: 2002 !important;
    }
}

/* ============================================================
   BOOKING MODAL - TWO FIELDS PER ROW
   Desktop / tablet: 2 fields in one row
   Mobile: 1 field per row
   No Blade/PHP/JS changes required.
   ============================================================ */

#bookingRequestModal #bookingRequestForm .modal-body > .row.g-3 {
    display: flex;
    flex-wrap: wrap;
}

#bookingRequestModal #bookingRequestForm .modal-body > .row.g-3 > [class*="col-"] {
    width: 50% !important;
    flex: 0 0 50% !important;

    max-width: 50% !important;
}

/* Make all booking inputs/selects use the full half-column width */
#bookingRequestModal #bookingRequestForm .modal-body > .row.g-3 .form-control,
#bookingRequestModal #bookingRequestForm .modal-body > .row.g-3 .form-select {
    width: 100%;
}

/* Validation messages remain inside their respective field */
#bookingRequestModal #bookingRequestForm .invalid-feedback {
    width: 100%;
}

/* ============================================================
   MOBILE - ONE FIELD PER ROW
   ============================================================ */

@media (max-width: 767.98px) {

    #bookingRequestModal #bookingRequestForm .modal-body > .row.g-3 > [class*="col-"] {
        width: 100% !important;
        flex: 0 0 100% !important;

        max-width: 100% !important;
    }
}

/* ============================================================
   FINAL BOOKING MODAL FIX
   1. Validation messages hidden until validation adds .is-invalid
   2. Modal horizontally + vertically centered
   3. Two fields per row retained
   ============================================================ */

/* ------------------------------------------------------------
   VALIDATION MESSAGES
   Bootstrap 3/5 CSS can conflict with .invalid-feedback.
   Keep them hidden by default.
   ------------------------------------------------------------ */

#bookingRequestModal #bookingRequestForm .invalid-feedback {
    display: none !important;

    width: 100%;

    margin-top: 5px;

    color: #b42331;

    font-size: 11px;
    line-height: 1.4;
}

/* Show validation only after the corresponding field is invalid */
#bookingRequestModal #bookingRequestForm .form-control.is-invalid + .invalid-feedback,
#bookingRequestModal #bookingRequestForm .form-select.is-invalid + .invalid-feedback,
#bookingRequestModal #bookingRequestForm input.is-invalid ~ .invalid-feedback,
#bookingRequestModal #bookingRequestForm select.is-invalid ~ .invalid-feedback {
    display: block !important;
}

/* Also support Bootstrap validation wrappers */
#bookingRequestModal #bookingRequestForm .is-invalid ~ .invalid-feedback {
    display: block !important;
}

/* Never show validation merely because the modal opened */
#bookingRequestModal:not(.show) #bookingRequestForm .invalid-feedback {
    display: none !important;
}


/* ------------------------------------------------------------
   MODAL - TRUE CENTERING
   Using flex on the modal itself prevents it being pushed
   to the left by parent/grid styles.
   ------------------------------------------------------------ */

#bookingRequestModal.modal {
    position: fixed !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    padding: 0 !important;

    overflow-x: hidden;
    overflow-y: auto;

    z-index: 2000 !important;
}

/* Hidden state */
#bookingRequestModal.modal:not(.show) {
    display: none !important;
}

/* Visible state */
#bookingRequestModal.modal.show {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    opacity: 1 !important;
}

/* Dialog is centered by the modal flex container */
#bookingRequestModal .modal-dialog {
    position: relative !important;

    width: calc(100% - 30px) !important;
    max-width: 820px !important;

    margin: 30px auto !important;

    flex: 0 1 820px !important;

    transform: none !important;

    pointer-events: none !important;

    z-index: 2001 !important;
}

#bookingRequestModal .modal-content {
    position: relative !important;

    width: 100% !important;

    margin: 0 auto !important;

    pointer-events: auto !important;

    z-index: 2002 !important;
}


/* ------------------------------------------------------------
   BOOKING FORM - TWO COLUMNS
   ------------------------------------------------------------ */

#bookingRequestModal #bookingRequestForm .modal-body > .row.g-3 {
    display: flex;
    flex-wrap: wrap;

    margin-right: -7px;
    margin-left: -7px;
}

#bookingRequestModal #bookingRequestForm .modal-body > .row.g-3 > [class*="col-"] {
    width: 50% !important;
    max-width: 50% !important;

    flex: 0 0 50% !important;

    padding-right: 7px;
    padding-left: 7px;
}

#bookingRequestModal #bookingRequestForm .form-control,
#bookingRequestModal #bookingRequestForm .form-select {
    width: 100% !important;
}


/* ------------------------------------------------------------
   BUTTONS MUST REMAIN CLICKABLE
   ------------------------------------------------------------ */

#bookingRequestModal .modal-footer {
    position: relative;

    z-index: 2003 !important;
}

#bookingRequestModal .modal-footer .btn {
    position: relative;

    z-index: 2004 !important;

    pointer-events: auto !important;

    cursor: pointer !important;
}


/* ------------------------------------------------------------
   BACKDROP ALWAYS BELOW MODAL
   ------------------------------------------------------------ */

.modal-backdrop {
    z-index: 1990 !important;
}

.modal-backdrop.show {
    z-index: 1990 !important;

    opacity: .55 !important;
}


/* ------------------------------------------------------------
   MOBILE
   ------------------------------------------------------------ */

@media (max-width: 767.98px) {

    #bookingRequestModal.modal.show {
        align-items: center !important;
        justify-content: center !important;
    }

    #bookingRequestModal .modal-dialog {
        width: calc(100% - 16px) !important;

        max-width: none !important;

        margin: 8px auto !important;

        flex: 0 1 calc(100% - 16px) !important;
    }

    #bookingRequestModal #bookingRequestForm .modal-body > .row.g-3 > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;

        flex: 0 0 100% !important;
    }
}

@media (max-width: 575.98px) {

    #bookingRequestModal .modal-dialog {
        width: calc(100% - 10px) !important;

        flex-basis: calc(100% - 10px) !important;

        margin: 5px auto !important;
    }
}

/* ============================================================
   BOOKING REQUEST BUTTON - RIGHT ALIGNMENT
   ============================================================ */

.main-content > .card.p-3 > .d-flex {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Keep heading on left */
.main-content > .card.p-3 > .d-flex h5 {
    margin-right: auto !important;
}

/* Move Booking Request button to right */
.main-content > .card.p-3 > .d-flex .btn {
    margin-left: auto !important;
}
@media (max-width: 575.98px) {

    .main-content > .card.p-3 > .d-flex {
        flex-direction: row !important;
        align-items: center !important;
    }

    .main-content > .card.p-3 > .d-flex h5 {
        margin-right: 10px !important;
    }

    .main-content > .card.p-3 > .d-flex .btn {
        margin-left: auto !important;
        white-space: nowrap;
    }
}