body{
    background:#F8FAFC;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

/* =========================
   WRAPPER
========================= */

.dashboard-wrapper{
    display:flex;
    min-height:100vh;
}

/* =========================
   SIDEBAR
========================= */

.dashboard-sidebar{
    position:fixed;
    left:0;
    top:0;
    width:280px;
    height:100vh;
    background:#0F172A;
    padding:30px 20px;
    overflow-y:auto;
    z-index:999;
}

.dashboard-sidebar::-webkit-scrollbar{
    width:4px;
}

.dashboard-logo{
    margin-bottom:45px;
}

.dashboard-logo h2{
    color:white;
    font-size:48px;
    font-weight:800;
    letter-spacing:-1px;
}

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

.dashboard-menu li{
    margin-bottom:14px;
}

.dashboard-menu li a{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    color:#CBD5E1;
    padding:16px 18px;
    border-radius:18px;
    transition:.3s ease;
    font-size:17px;
    font-weight:500;
}

.dashboard-menu li.active a,
.dashboard-menu li a:hover{
    background:#FF6B2C;
    color:white;
    transform:translateX(4px);
    box-shadow:0 10px 30px rgba(255,107,44,.25);
}

.dashboard-menu li a i{
    font-size:20px;
}

/* =========================
   MAIN
========================= */

.dashboard-main{
    flex:1;
    margin-left:280px;
    padding:35px;
}

/* =========================
   TOPBAR
========================= */

.dashboard-topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
    gap:20px;
}

.dashboard-title{
    font-size:58px;
    font-weight:800;
    line-height:1.1;
    color:#0F172A;
    margin-bottom:10px;
}

.dashboard-subtitle{
    color:#64748B;
    font-size:18px;
    margin:0;
}

.dashboard-topbar-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.dashboard-search{
    width:420px;
    background:white;
    border-radius:20px;
    padding:15px 20px;
    display:flex;
    align-items:center;
    gap:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.dashboard-search i{
    color:#94A3B8;
    font-size:18px;
}

.dashboard-search input{
    border:none;
    outline:none;
    width:100%;
    background:transparent;
    font-size:15px;
}

.dashboard-icon-btn{
    width:54px;
    height:54px;
    border:none;
    border-radius:18px;
    background:white;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
    transition:.3s;
}

.dashboard-icon-btn:hover{
    transform:translateY(-2px);
}

.dashboard-profile{
    background:white;
    padding:10px 15px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.dashboard-profile img{
    width:56px;
    height:56px;
    border-radius:50%;
    object-fit:cover;
}

.dashboard-profile h6{
    margin:0;
    font-size:16px;
    font-weight:700;
    color:#0F172A;
}

.dashboard-profile small{
    color:#64748B;
    font-size:14px;
}

/* =========================
   STATS
========================= */

.dashboard-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-bottom:35px;
}

.dashboard-stat-card{
    padding:30px;
    border-radius:28px;
    color:white;
    position:relative;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.dashboard-stat-card::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(255,255,255,.10);
    top:-20px;
    right:-20px;
}

.dashboard-stat-card h3{
    font-size:58px;
    font-weight:800;
    margin-bottom:10px;
}

.dashboard-stat-card p{
    margin:0;
    font-size:17px;
    opacity:.95;
}

.dashboard-stat-orange{
    background:linear-gradient(135deg,#FF6B2C,#FF8A4C);
}

.dashboard-stat-blue{
    background:linear-gradient(135deg,#2563EB,#4F8BFF);
}

.dashboard-stat-purple{
    background:linear-gradient(135deg,#7C3AED,#A855F7);
}

.dashboard-stat-green{
    background:linear-gradient(135deg,#059669,#10B981);
}

/* =========================
   CARD
========================= */

.dashboard-card{
    background:white;
    border-radius:34px;
    padding:34px;
    margin-bottom:30px;
    box-shadow:0 15px 40px rgba(15,23,42,.05);
      transition:all .3s ease;
}

/* =========================
   SECTION HEADER
========================= */

.dashboard-section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.dashboard-section-header h3{
    font-size:34px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:8px;
}

.dashboard-section-header p{
    color:#64748B;
    margin:0;
}

.dashboard-view-btn{
    text-decoration:none;
    background:#F1F5F9;
    color:#0F172A;
    padding:14px 20px;
    border-radius:16px;
    font-weight:600;
    transition:.3s;
}

.dashboard-view-btn:hover{
    background:#E2E8F0;
}

/* =========================
   SESSION CARD
========================= */

.dashboard-session-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border:1px solid #E2E8F0;
    border-radius:26px;
    padding:22px;
    margin-bottom:20px;
    transition:.3s;
}

.dashboard-session-card:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.dashboard-session-user{
    display:flex;
    align-items:center;
    gap:18px;
}

.dashboard-session-user img{
    width:72px;
    height:72px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #F8FAFC;
}

.dashboard-session-user h5{
    font-size:28px;
    margin-bottom:12px;
    font-weight:700;
    color:#0F172A;
}

.dashboard-session-meta{
    display:flex;
    align-items:center;
    gap:12px;
}

.dashboard-badge{
    background:#FFF1EB;
    color:#FF6B2C;
    padding:8px 14px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
}

.dashboard-rating{
    color:#64748B;
    font-weight:600;
}

.dashboard-session-time h6{
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
}

.dashboard-session-time p{
    color:#64748B;
    margin:0;
    font-size:16px;
}

.dashboard-join-btn{
    border:none;
    background:#FF6B2C;
    color:white;
    padding:15px 28px;
    border-radius:18px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
    display:inline-block;
}

.dashboard-join-btn:hover{
    background:#f55a18;
    color:white;
    transform:translateY(-2px);
}

/* =========================
   EMPTY STATE
========================= */

.dashboard-empty-state{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    padding:60px 20px;

    min-height:220px;
    height:auto;

    border:2px dashed #e5e7eb;
    border-radius:24px;

    background:#f9fafb;

    margin-top:20px;
}

.dashboard-empty-state i{
    font-size:60px;
    color:#cbd5e1;
    margin-bottom:16px;
}

.dashboard-empty-state h4{
    font-size:20px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:10px;
}

.dashboard-empty-state p{
    font-size:15px;
    color:#64748b;
    margin:0;
}

/* =========================
   TABLE
========================= */

.dashboard-table-wrapper{
    overflow-x:auto;
}

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

.dashboard-table thead{
    background:#F8FAFC;
}

.dashboard-table th{
    padding:18px;
    text-align:left;
    font-size:15px;
    font-weight:700;
    color:#0F172A;
}

.dashboard-table td{
    padding:18px;
    border-bottom:1px solid #E2E8F0;
    color:#334155;
    font-weight:500;
}

.dashboard-table tr:hover{
    background:#FAFAFA;
}

.dashboard-status{
    background:#ECFDF3;
    color:#059669;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1400px){

    .dashboard-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:1100px){

    .dashboard-sidebar{
        width:90px;
    }

    .dashboard-main{
        margin-left:90px;
    }

    .dashboard-menu li a span,
    .dashboard-logo h2{
        display:none;
    }

    .dashboard-search{
        width:250px;
    }

}

@media(max-width:768px){

    .dashboard-main{
        padding:20px;
    }

    .dashboard-topbar{
        flex-direction:column;
        align-items:flex-start;
    }

    .dashboard-topbar-right{
        width:100%;
        flex-wrap:wrap;
    }

    .dashboard-search{
        width:100%;
    }

    .dashboard-stats-grid{
        grid-template-columns:1fr;
    }

    .dashboard-session-card{
        flex-direction:column;
        align-items:flex-start;
        gap:25px;
    }

    .dashboard-title{
        font-size:42px;
    }

    .dashboard-section-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

}

.dashboard-logo-link{
    text-decoration:none;
}

.dashboard-logo-link h2{
    color:#fff;
    margin:0;
}

.dashboard-back-home{
    padding:0 20px;
    margin-bottom:25px;
}

.dashboard-back-home a{
    display:flex;
    align-items:center;
    gap:10px;
    color:#9ca3af;
    text-decoration:none;
    font-size:15px;
    transition:all .3s ease;
}

.dashboard-back-home a:hover{
    color:#fff;
    transform:translateX(-4px);
}


/* =========================
   BOOKING PAGE
========================= */

:root{
    --booking-bg:#F6F8FB;
    --booking-surface:#FFFFFF;
    --booking-surface-soft:#F8FAFC;
    --booking-border:#E5EAF1;
    --booking-text:#111827;
    --booking-muted:#64748B;
    --booking-primary:#FF6B2C;
    --booking-primary-dark:#EA580C;
    --booking-blue:#2563EB;
    --booking-green:#10B981;
    --booking-red:#EF4444;
    --booking-shadow:0 18px 45px rgba(15,23,42,.07);
    --booking-shadow-soft:0 8px 24px rgba(15,23,42,.05);
}

.consumer-booking-page{
    padding:32px 24px 56px;
    background:radial-gradient(circle at top left, rgba(255,107,44,.08), transparent 28%), var(--booking-bg);
    min-height:100vh;
}

.consumer-booking-page .container{
    max-width:1480px;
}

.consumer-booking-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin:26px 0 28px;
}

.consumer-booking-header h1{
    margin:0 0 8px;
    color:var(--booking-text);
    font-size:42px;
    font-weight:800;
    line-height:1.05;
    letter-spacing:-1.2px;
    background:none;
    -webkit-text-fill-color:initial;
}

.consumer-booking-header p{
    margin:0;
    color:var(--booking-muted);
    font-size:16px;
    font-weight:500;
}

.consumer-analytics-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-bottom:28px;
}

.analytics-card{
    min-height:154px;
    padding:26px;
    border-radius:24px;
    color:#fff;
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg, #FF6B2C, #FF8A4C);
    box-shadow:var(--booking-shadow);
}

.analytics-card::before{
    content:'';
    position:absolute;
    width:116px;
    height:116px;
    border-radius:50%;
    background:rgba(255,255,255,.14);
    top:-26px;
    right:-20px;
}

.analytics-card h3{
    position:relative;
    margin:0 0 14px;
    font-size:46px;
    font-weight:800;
    line-height:1;
}

.analytics-card p{
    position:relative;
    margin:0;
    font-size:15px;
    font-weight:700;
    opacity:.86;
}

.analytics-card.blue{ background:linear-gradient(135deg, #2563EB, #60A5FA); }
.analytics-card.green{ background:linear-gradient(135deg, #059669, #34D399); }
.analytics-card.red{ background:linear-gradient(135deg, #DC2626, #F87171); }

.consumer-booking-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    margin-bottom:28px;
    flex-wrap:wrap;
}

.consumer-booking-search{
    width:min(100%, 430px);
    height:58px;
    padding:0 20px;
    display:flex;
    align-items:center;
    gap:14px;
    background:var(--booking-surface);
    border:1px solid var(--booking-border);
    border-radius:18px;
    box-shadow:var(--booking-shadow-soft);
    transition:.25s ease;
}

.consumer-booking-search:focus-within{
    border-color:rgba(255,107,44,.45);
    box-shadow:0 0 0 4px rgba(255,107,44,.10);
}

.consumer-booking-search i{
    color:#94A3B8;
    font-size:18px;
}

.consumer-booking-search input{
    width:100%;
    border:none;
    outline:none;
    background:transparent;
    color:var(--booking-text);
    font-size:15px;
    font-weight:600;
}

.consumer-booking-filter{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.filter-btn{
    height:54px;
    padding:0 24px;
    border:1px solid var(--booking-border);
    border-radius:16px;
    background:var(--booking-surface);
    color:#243044;
    font-size:15px;
    font-weight:800;
    transition:all .25s ease;
    box-shadow:var(--booking-shadow-soft);
}

.filter-btn:hover,
.filter-btn.active{
    background:var(--booking-primary);
    border-color:var(--booking-primary);
    color:#fff;
    transform:translateY(-1px);
}

.consumer-booking-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:22px;
}

.consumer-booking-card{
    position:relative;
    overflow:hidden;
    padding:26px;
    border-radius:26px;
    background:var(--booking-surface);
    border:1px solid var(--booking-border);
    box-shadow:var(--booking-shadow-soft);
    transition:all .3s ease;
}

.consumer-booking-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg, #FF6B2C, #FF9A6B);
}

.consumer-booking-card::after{
    content:'';
    position:absolute;
    left:0;
    top:44px;
    width:4px;
    height:72px;
    border-radius:0 10px 10px 0;
    background:linear-gradient(180deg, #FF6B2C, #FF9A6B);
}

.consumer-booking-card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,107,44,.32);
    box-shadow:var(--booking-shadow);
}

.consumer-booking-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding-bottom:22px;
    margin-bottom:22px;
    border-bottom:1px solid var(--booking-border);
}

.consumer-booking-user{
    display:flex;
    align-items:center;
    gap:18px;
    min-width:0;
}

.consumer-booking-user img{
    width:66px;
    height:66px;
    flex:0 0 66px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #fff;
    box-shadow:0 6px 16px rgba(15,23,42,.10);
    transition:.3s ease;
}

.consumer-booking-card:hover .consumer-booking-user img{
    transform:scale(1.04);
}

.consumer-booking-user h4{
    margin:0 0 6px;
    color:var(--booking-text);
    font-size:28px;
    font-weight:800;
    line-height:1.05;
}

.consumer-booking-user span{
    color:var(--booking-muted);
    font-size:15px;
    font-weight:600;
}

.consumer-booking-status{
    flex:0 0 auto;
    padding:9px 16px;
    border-radius:999px;
    font-size:14px;
    font-weight:800;
    white-space:nowrap;
}

.consumer-booking-status.upcoming{ background:#EAF8F0; color:#10B981; }
.consumer-booking-status.completed{ background:#ECFDF3; color:#059669; }
.consumer-booking-status.cancelled{ background:#FEE2E2; color:#DC2626; }

.consumer-booking-info{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:12px;
}

.booking-info-item{
    min-height:142px;
    padding:22px;
    border-radius:18px;
    background:var(--booking-surface-soft);
    border:1px solid var(--booking-border);
    transition:.25s ease;
}

.booking-info-item:hover{
    background:#F3F6FA;
}

.booking-info-item small{
    display:block;
    margin-bottom:14px;
    color:var(--booking-muted);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.booking-info-item h6{
    margin:0;
    color:var(--booking-text);
    font-size:22px;
    font-weight:800;
    line-height:1.35;
}

.consumer-booking-footer{
    margin-top:22px;
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.booking-btn{
    min-height:52px;
    padding:0 22px;
    border:none;
    outline:none;
    border-radius:16px;
    font-size:15px;
    font-weight:800;
    text-decoration:none;
    transition:all .25s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    position:relative;
    overflow:hidden;
}

.booking-btn:disabled{
    cursor:not-allowed;
    opacity:.75;
}

.booking-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.15);
    transform:skewX(-20deg);
    transition:.6s;
}

.booking-btn:hover::before{ left:120%; }

.booking-btn-primary{
    background:linear-gradient(135deg, var(--booking-primary), #FF8A4C);
    color:#fff;
    box-shadow:0 12px 24px rgba(255,107,44,.22);
}

.booking-btn-primary:hover{
    transform:translateY(-2px);
    color:#fff;
}

.booking-btn-light{
    background:#EEF4FB;
    color:#2563EB;
}

.booking-btn-light:hover{ background:#E2EAF4; }

.consumer-empty-booking{
    grid-column:1/-1;
    padding:80px 30px;
    text-align:center;
    background:var(--booking-surface);
    border:1px solid var(--booking-border);
    border-radius:28px;
    box-shadow:var(--booking-shadow-soft);
}

.consumer-empty-booking img{
    width:140px;
    margin-bottom:24px;
}

.consumer-empty-booking h3{
    margin:0 0 12px;
    color:var(--booking-text);
    font-size:34px;
    font-weight:800;
}

.consumer-empty-booking p{
    margin:0 0 28px;
    color:var(--booking-muted);
    font-size:16px;
}

.consumer-pagination-wrapper{
    margin-top:42px;
    display:flex;
    justify-content:center;
}

.consumer-pagination-wrapper nav{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
}

.consumer-pagination-wrapper .pagination,
.pagination{
    display:flex;
    align-items:center;
    gap:8px;
    margin:0;
    padding:0;
}

.consumer-pagination-wrapper svg{
    width:18px !important;
    height:18px !important;
}

.page-link,
.consumer-pagination-wrapper a,
.consumer-pagination-wrapper span{
    min-width:44px;
    min-height:44px;
    padding:0 14px !important;
    border:none !important;
    border-radius:12px !important;
    color:var(--booking-text) !important;
    font-size:14px;
    font-weight:800;
    background:#fff !important;
    box-shadow:var(--booking-shadow-soft);
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.page-item.active .page-link,
.consumer-pagination-wrapper .active > span{
    background:var(--booking-primary) !important;
    color:#fff !important;
}

body.dark-mode{ background:#0B1220; }

body.dark-mode .consumer-booking-page{
    background:radial-gradient(circle at top left, rgba(255,107,44,.10), transparent 28%), #0B1220;
}

body.dark-mode .consumer-booking-card,
body.dark-mode .consumer-booking-search,
body.dark-mode .booking-info-item,
body.dark-mode .consumer-empty-booking,
body.dark-mode .filter-btn,
body.dark-mode .dashboard-back-btn{
    background:#172033;
    border-color:#29364D;
}

body.dark-mode .booking-info-item{ background:#151E30; }
body.dark-mode .consumer-booking-top{ border-color:#29364D; }

body.dark-mode .consumer-booking-header h1,
body.dark-mode h1,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h6{
    color:#F8FAFC !important;
}

body.dark-mode p,
body.dark-mode span,
body.dark-mode small{
    color:#CBD5E1 !important;
}

body.dark-mode .consumer-booking-search input{ color:#F8FAFC; }

body.dark-mode .page-link,
body.dark-mode .consumer-pagination-wrapper a,
body.dark-mode .consumer-pagination-wrapper span{
    background:#172033 !important;
    color:#F8FAFC !important;
}

::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background:#F1F5F9; }
::-webkit-scrollbar-thumb{ background:#CBD5E1; border-radius:20px; }
::-webkit-scrollbar-thumb:hover{ background:#94A3B8; }

.dashboard-back-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    height:48px;
    padding:0 18px;
    margin-bottom:0;
    border-radius:14px;
    background:var(--booking-surface);
    color:var(--booking-text);
    font-size:15px;
    font-weight:800;
    text-decoration:none;
    border:1px solid var(--booking-border);
    box-shadow:var(--booking-shadow-soft);
    transition:.25s ease;
}

.dashboard-back-btn:hover{
    transform:translateY(-1px);
    color:var(--booking-primary);
    border-color:rgba(255,107,44,.28);
    box-shadow:var(--booking-shadow);
}

.dashboard-sidebar-logo{
    width:135px;
    max-width:100%;
    height:auto;
    display:block;
    margin:0 auto;
    object-fit:contain;
    transition:.3s ease;
}

.dashboard-sidebar-logo:hover{ transform:scale(1.03); }

.dashboard-logo{
    text-align:center;
    margin-bottom:30px;
    padding-top:10px;
}

@media(max-width:1200px){
    .consumer-booking-grid{ grid-template-columns:1fr; }
    .consumer-analytics-grid{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:768px){
    .consumer-booking-page{ padding:22px 14px 42px; }

    .consumer-booking-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .consumer-booking-header h1{ font-size:34px; }
    .consumer-booking-search{ width:100%; }
    .consumer-booking-filter{ width:100%; }

    .filter-btn{
        flex:1;
        padding:0 12px;
    }

    .consumer-booking-info{ grid-template-columns:1fr; }
    .booking-info-item{ min-height:auto; }

    .consumer-booking-footer{
        flex-direction:column;
        align-items:stretch;
    }

    .booking-btn{ width:100%; }

    .consumer-booking-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .consumer-booking-user h4{ font-size:24px; }
    .consumer-analytics-grid{ grid-template-columns:1fr; }
}

@media(max-width:576px){
    .consumer-booking-card{
        padding:20px;
        border-radius:22px;
    }

    .consumer-booking-user{ align-items:flex-start; }

    .consumer-booking-user img{
        width:60px;
        height:60px;
        flex-basis:60px;
    }

    .consumer-booking-header h1{ font-size:32px; }
}

@media(max-width:1100px){
    .dashboard-sidebar-logo{
        width:50px;
        margin:auto;
    }
}

/* Pagination layout fix for Laravel default markup */
.consumer-pagination-wrapper nav{
    width:100%;
    display:flex !important;
    justify-content:center !important;
}

.consumer-pagination-wrapper nav > div:first-child{
    display:none !important;
}

.consumer-pagination-wrapper nav > div:last-child{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:18px !important;
    flex-wrap:wrap !important;
}

.consumer-pagination-wrapper nav > div:last-child > div:first-child,
.consumer-pagination-wrapper nav > div:last-child > div:first-child p{
    margin:0 !important;
    color:var(--booking-muted) !important;
    font-size:15px !important;
    font-weight:500 !important;
    line-height:1.5 !important;
    display:block !important;
    box-shadow:none !important;
    background:transparent !important;
    min-width:0 !important;
    min-height:0 !important;
    padding:0 !important;
}

.consumer-pagination-wrapper nav > div:last-child > div:first-child span{
    display:inline !important;
    min-width:0 !important;
    min-height:0 !important;
    padding:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    color:var(--booking-text) !important;
    border-radius:0 !important;
}

.consumer-pagination-wrapper nav > div:last-child > div:last-child > span{
    display:inline-flex !important;
    align-items:center !important;
    gap:8px !important;
    padding:8px !important;
    border-radius:16px !important;
    background:#fff !important;
    box-shadow:var(--booking-shadow-soft) !important;
}

.consumer-pagination-wrapper nav > div:last-child > div:last-child a,
.consumer-pagination-wrapper nav > div:last-child > div:last-child span[aria-current] > span,
.consumer-pagination-wrapper nav > div:last-child > div:last-child span[aria-disabled] > span{
    width:44px !important;
    height:44px !important;
    min-width:44px !important;
    min-height:44px !important;
    padding:0 !important;
    margin:0 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    border:0 !important;
    border-radius:12px !important;
    background:#fff !important;
    color:var(--booking-text) !important;
    font-size:15px !important;
    font-weight:800 !important;
    line-height:1 !important;
    box-shadow:none !important;
}

.consumer-pagination-wrapper nav > div:last-child > div:last-child span[aria-current] > span{
    background:var(--booking-primary) !important;
    color:#fff !important;
}

.consumer-pagination-wrapper nav > div:last-child > div:last-child span[aria-disabled] > span{
    color:#CBD5E1 !important;
    background:#F8FAFC !important;
}

.consumer-pagination-wrapper nav > div:last-child > div:last-child svg{
    width:18px !important;
    height:18px !important;
}

body.dark-mode .consumer-pagination-wrapper nav > div:last-child > div:first-child,
body.dark-mode .consumer-pagination-wrapper nav > div:last-child > div:first-child p{
    color:#CBD5E1 !important;
    background:transparent !important;
}

body.dark-mode .consumer-pagination-wrapper nav > div:last-child > div:first-child span{
    color:#F8FAFC !important;
    background:transparent !important;
}

body.dark-mode .consumer-pagination-wrapper nav > div:last-child > div:last-child > span,
body.dark-mode .consumer-pagination-wrapper nav > div:last-child > div:last-child a{
    background:#172033 !important;
    color:#F8FAFC !important;
}

/* =========================================
   SAAS DASHBOARD POLISH OVERRIDES
========================================= */

:root{
    --dash-bg:#F6F8FB;
    --dash-sidebar:#0B1220;
    --dash-sidebar-soft:#111A2D;
    --dash-surface:#FFFFFF;
    --dash-soft:#F8FAFC;
    --dash-border:#E5EAF1;
    --dash-text:#111827;
    --dash-muted:#64748B;
    --dash-primary:#FF6B2C;
    --dash-primary-dark:#EA580C;
    --dash-shadow:0 18px 45px rgba(15,23,42,.07);
    --dash-shadow-soft:0 8px 24px rgba(15,23,42,.05);
}

body{
    background:var(--dash-bg);
}

.dashboard-wrapper{
    background:var(--dash-bg);
}

.dashboard-sidebar{
    width:260px;
    padding:28px 18px;
    background:linear-gradient(180deg, #0B1220 0%, #0F172A 100%);
    border-right:1px solid rgba(255,255,255,.06);
}

.dashboard-main{
    margin-left:260px;
    padding:40px 42px 56px;
    background:radial-gradient(circle at top right, rgba(37,99,235,.06), transparent 34%), var(--dash-bg);
}

.dashboard-logo{
    margin-bottom:28px;
    padding-top:4px;
}

.dashboard-sidebar-logo{
    width:132px;
    filter:drop-shadow(0 14px 24px rgba(0,0,0,.18));
}

.dashboard-back-home{
    padding:0 10px;
    margin-bottom:26px;
}

.dashboard-back-home a{
    height:42px;
    padding:0 12px;
    border-radius:12px;
    color:#B7C4D8;
    font-size:14px;
    font-weight:600;
}

.dashboard-back-home a:hover{
    background:rgba(255,255,255,.06);
    color:#fff;
    transform:translateX(2px);
}

.dashboard-menu li{
    margin-bottom:8px;
}

.dashboard-menu li a{
    min-height:52px;
    padding:0 16px;
    border-radius:14px;
    color:#CBD5E1;
    font-size:15px;
    font-weight:700;
    gap:14px;
}

.dashboard-menu li a i{
    width:22px;
    font-size:20px;
    text-align:center;
}

.dashboard-menu li.active a,
.dashboard-menu li a:hover{
    background:linear-gradient(135deg, var(--dash-primary), #FF8A4C);
    color:#fff;
    transform:translateX(2px);
    box-shadow:0 12px 28px rgba(255,107,44,.24);
}

.dashboard-topbar{
    align-items:center;
    margin-bottom:30px;
    gap:24px;
}

.dashboard-title{
    margin:0 0 10px;
    color:var(--dash-text);
    font-size:46px;
    font-weight:800;
    line-height:1.04;
    letter-spacing:-1.2px;
}

.dashboard-subtitle{
    color:var(--dash-muted);
    font-size:17px;
    font-weight:600;
}

.dashboard-topbar-right{
    gap:12px;
    flex-wrap:wrap;
    justify-content:flex-end;
}

.dashboard-search{
    width:min(100%, 420px);
    height:58px;
    padding:0 20px;
    border-radius:18px;
    background:var(--dash-surface);
    border:1px solid var(--dash-border);
    box-shadow:var(--dash-shadow-soft);
    transition:.25s ease;
}

.dashboard-search:focus-within{
    border-color:rgba(255,107,44,.45);
    box-shadow:0 0 0 4px rgba(255,107,44,.10);
}

.dashboard-search input{
    color:var(--dash-text);
    font-size:15px;
    font-weight:600;
}

.dashboard-icon-btn{
    width:56px;
    height:56px;
    border-radius:16px;
    background:var(--dash-surface);
    border:1px solid var(--dash-border);
    color:var(--dash-text);
    box-shadow:var(--dash-shadow-soft);
}

.dashboard-icon-btn:hover{
    transform:translateY(-1px);
    border-color:rgba(255,107,44,.28);
    color:var(--dash-primary);
}

.dashboard-profile{
    min-height:64px;
    padding:8px 14px 8px 8px;
    border-radius:18px;
    background:var(--dash-surface);
    border:1px solid var(--dash-border);
    box-shadow:var(--dash-shadow-soft);
}

.dashboard-profile img{
    width:48px;
    height:48px;
    border:2px solid #fff;
    box-shadow:0 6px 16px rgba(15,23,42,.10);
}

.dashboard-profile h6{
    max-width:130px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:15px;
    line-height:1.15;
}

.dashboard-profile small{
    font-size:13px;
    font-weight:600;
}

.dashboard-stats-grid{
    gap:18px;
    margin-bottom:28px;
}

.dashboard-stat-card{
    min-height:154px;
    padding:26px;
    border-radius:24px;
    box-shadow:var(--dash-shadow);
}

.dashboard-stat-card::before{
    width:116px;
    height:116px;
    top:-26px;
    right:-20px;
    background:rgba(255,255,255,.14);
}

.dashboard-stat-card h3{
    position:relative;
    margin:0 0 14px;
    font-size:46px;
    line-height:1;
}

.dashboard-stat-card p{
    position:relative;
    color:rgba(255,255,255,.86);
    font-size:15px;
    font-weight:700;
}

.dashboard-stat-orange{ background:linear-gradient(135deg,#FF6B2C,#FF8A4C); }
.dashboard-stat-blue{ background:linear-gradient(135deg,#2563EB,#60A5FA); }
.dashboard-stat-purple{ background:linear-gradient(135deg,#7C3AED,#A855F7); }
.dashboard-stat-green{ background:linear-gradient(135deg,#059669,#34D399); }

.dashboard-card{
    padding:30px;
    border-radius:26px;
    background:var(--dash-surface);
    border:1px solid var(--dash-border);
    box-shadow:var(--dash-shadow-soft);
}

.dashboard-section-header{
    margin-bottom:24px;
}

.dashboard-section-header h3{
    margin:0 0 8px;
    color:var(--dash-text);
    font-size:32px;
    line-height:1.1;
    letter-spacing:-.4px;
}

.dashboard-section-header p{
    color:var(--dash-muted);
    font-size:15px;
    font-weight:500;
}

.dashboard-view-btn{
    min-height:52px;
    padding:0 22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:#EEF4FB;
    color:#2563EB;
    font-size:15px;
    font-weight:800;
}

.dashboard-view-btn:hover{
    background:#E2EAF4;
    color:#1D4ED8;
}

.dashboard-session-card{
    gap:20px;
    padding:22px 24px;
    margin-bottom:14px;
    border:1px solid var(--dash-border);
    border-radius:22px;
    background:#fff;
    box-shadow:none;
}

.dashboard-session-card:hover{
    transform:translateY(-2px);
    border-color:rgba(255,107,44,.26);
    box-shadow:var(--dash-shadow-soft);
}

.dashboard-session-user{
    min-width:0;
    flex:1 1 42%;
}

.dashboard-session-user img{
    width:64px;
    height:64px;
    border:3px solid #F8FAFC;
}

.dashboard-session-user h5{
    margin:0 0 10px;
    color:var(--dash-text);
    font-size:24px;
    font-weight:800;
    line-height:1.15;
}

.dashboard-session-meta{
    gap:10px;
    flex-wrap:wrap;
}

.dashboard-badge{
    padding:7px 13px;
    background:#FFF1EB;
    color:var(--dash-primary);
    font-size:13px;
}

.dashboard-rating{
    color:var(--dash-muted);
    font-size:14px;
    font-weight:700;
}

.dashboard-session-time{
    min-width:190px;
}

.dashboard-session-time h6{
    margin:0 0 8px;
    color:var(--dash-text);
    font-size:22px;
    font-weight:800;
}

.dashboard-session-time p{
    color:var(--dash-muted);
    font-size:15px;
    font-weight:600;
}

.dashboard-join-btn{
    min-height:52px;
    min-width:150px;
    padding:0 24px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:linear-gradient(135deg, var(--dash-primary), #FF8A4C);
    color:#fff;
    font-size:15px;
    font-weight:800;
    box-shadow:0 12px 24px rgba(255,107,44,.22);
}

.dashboard-join-btn:hover{
    background:linear-gradient(135deg, var(--dash-primary-dark), var(--dash-primary));
    color:#fff;
    transform:translateY(-2px);
}

.dashboard-empty-state{
    min-height:210px;
    padding:48px 20px;
    border:1px dashed #CBD5E1;
    border-radius:22px;
    background:#F8FAFC;
}

.dashboard-empty-state i{
    font-size:46px;
    color:#B6C2D2;
}

.dashboard-table-wrapper{
    border:1px solid var(--dash-border);
    border-radius:20px;
    overflow:hidden;
}

.dashboard-table{
    min-width:720px;
}

.dashboard-table thead{
    background:#F8FAFC;
}

.dashboard-table th{
    padding:16px 18px;
    color:#334155;
    font-size:12px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.dashboard-table td{
    padding:18px;
    border-bottom:1px solid var(--dash-border);
    color:#334155;
    font-size:15px;
    font-weight:600;
}

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

.dashboard-table tr:hover{
    background:#F8FAFC;
}

.dashboard-status{
    background:#EAF8F0;
    color:#10B981;
    padding:7px 13px;
    font-size:13px;
    font-weight:800;
}

@media(max-width:1400px){
    .dashboard-main{
        padding:32px 28px 48px;
    }

    .dashboard-title{
        font-size:40px;
    }
}

@media(max-width:1100px){
    .dashboard-sidebar{
        width:92px;
        padding:24px 14px;
    }

    .dashboard-main{
        margin-left:92px;
    }

    .dashboard-sidebar-logo{
        width:50px;
    }

    .dashboard-back-home{
        padding:0;
    }

    .dashboard-back-home a{
        justify-content:center;
        padding:0;
    }

    .dashboard-back-home a span{
        display:none;
    }

    .dashboard-menu li a{
        justify-content:center;
        padding:0;
    }

    .dashboard-menu li a span{
        display:none;
    }

    .dashboard-search{
        width:300px;
    }
}

@media(max-width:768px){
    .dashboard-main{
        padding:22px 14px 42px;
    }

    .dashboard-title{
        font-size:34px;
    }

    .dashboard-topbar{
        align-items:flex-start;
    }

    .dashboard-topbar-right{
        justify-content:flex-start;
    }

    .dashboard-search{
        width:100%;
        order:1;
    }

    .dashboard-profile{
        order:2;
        width:100%;
    }

    .dashboard-icon-btn{
        order:3;
    }

    .dashboard-card{
        padding:22px;
        border-radius:22px;
    }

    .dashboard-section-header{
        align-items:stretch;
    }

    .dashboard-view-btn{
        width:100%;
    }

    .dashboard-session-time{
        min-width:0;
    }

    .dashboard-join-btn{
        width:100%;
    }
}

/* =========================================
   MOBILE RESPONSIVE SYSTEM - DASHBOARD + BOOKINGS
========================================= */

@media(max-width:900px){
    body{
        overflow-x:hidden;
    }

    .dashboard-wrapper{
        display:block;
        min-height:100vh;
    }

    .dashboard-sidebar{
        position:fixed;
        left:0;
        right:0;
        top:auto;
        bottom:0;
        width:100%;
        height:76px;
        padding:8px 10px calc(8px + env(safe-area-inset-bottom));
        overflow-x:auto;
        overflow-y:hidden;
        z-index:1100;
        border-top:1px solid rgba(255,255,255,.10);
        border-right:0;
        background:rgba(11,18,32,.96);
        backdrop-filter:blur(16px);
    }

    .dashboard-sidebar::-webkit-scrollbar{
        display:none;
    }

    .dashboard-logo,
    .dashboard-back-home{
        display:none;
    }

    .dashboard-menu{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:8px;
        min-width:max-content;
        height:100%;
        margin:0;
    }

    .dashboard-menu li{
        margin:0;
    }

    .dashboard-menu li a{
        width:70px;
        min-height:58px;
        padding:6px 8px;
        flex-direction:column;
        justify-content:center;
        gap:5px;
        border-radius:16px;
        font-size:11px;
        line-height:1.1;
        text-align:center;
        transform:none !important;
    }

    .dashboard-menu li a i{
        width:auto;
        font-size:20px;
    }

    .dashboard-menu li a span{
        display:block;
        max-width:62px;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
    }

    .dashboard-menu li.active a,
    .dashboard-menu li a:hover{
        box-shadow:0 10px 22px rgba(255,107,44,.26);
    }

    .dashboard-main{
        margin-left:0;
        padding:20px 14px 104px;
        width:100%;
    }

    .dashboard-topbar{
        flex-direction:column;
        align-items:stretch;
        gap:18px;
        margin-bottom:22px;
    }

    .dashboard-title{
        font-size:34px;
        line-height:1.08;
        letter-spacing:-.6px;
        word-break:normal;
    }

    .dashboard-subtitle{
        font-size:15px;
    }

    .dashboard-topbar-right{
        display:grid;
        grid-template-columns:1fr 52px 52px;
        gap:10px;
        width:100%;
        justify-content:stretch;
    }

    .dashboard-search{
        grid-column:1 / -1;
        width:100%;
        height:54px;
        border-radius:16px;
    }

    .dashboard-icon-btn{
        width:52px;
        height:52px;
        border-radius:15px;
    }

    .dashboard-profile{
        grid-column:1 / 2;
        grid-row:2;
        min-width:0;
        min-height:52px;
        padding:6px 10px 6px 6px;
        border-radius:16px;
    }

    .dashboard-profile img{
        width:40px;
        height:40px;
    }

    .dashboard-profile h6{
        max-width:100%;
        font-size:14px;
    }

    .dashboard-profile small{
        font-size:12px;
    }

    .dashboard-stats-grid,
    .consumer-analytics-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:12px;
        margin-bottom:22px;
    }

    .dashboard-stat-card,
    .analytics-card{
        min-height:128px;
        padding:20px;
        border-radius:20px;
    }

    .dashboard-stat-card::before,
    .analytics-card::before{
        width:88px;
        height:88px;
        top:-18px;
        right:-18px;
    }

    .dashboard-stat-card h3,
    .analytics-card h3{
        font-size:38px;
        margin-bottom:10px;
    }

    .dashboard-stat-card p,
    .analytics-card p{
        font-size:13px;
        line-height:1.35;
    }

    .dashboard-card{
        padding:20px;
        border-radius:22px;
        margin-bottom:18px;
    }

    .dashboard-section-header{
        flex-direction:column;
        align-items:stretch;
        gap:14px;
        margin-bottom:18px;
    }

    .dashboard-section-header h3{
        font-size:26px;
    }

    .dashboard-section-header p{
        font-size:14px;
    }

    .dashboard-view-btn,
    .dashboard-join-btn{
        width:100%;
        min-height:50px;
    }

    .dashboard-session-card{
        flex-direction:column;
        align-items:stretch;
        gap:16px;
        padding:18px;
        border-radius:20px;
    }

    .dashboard-session-user{
        width:100%;
        flex:0 1 auto;
        gap:14px;
    }

    .dashboard-session-user img{
        width:56px;
        height:56px;
        flex:0 0 56px;
    }

    .dashboard-session-user h5{
        font-size:21px;
        margin-bottom:8px;
    }

    .dashboard-session-time{
        width:100%;
        min-width:0;
        padding:14px;
        border-radius:16px;
        background:#F8FAFC;
        border:1px solid #E5EAF1;
    }

    .dashboard-session-time h6{
        font-size:20px;
    }

    .dashboard-session-time p{
        font-size:14px;
    }

    .dashboard-table-wrapper{
        border-radius:18px;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
    }

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

    .dashboard-empty-state{
        min-height:190px;
        padding:38px 16px;
    }

    .consumer-booking-page{
        padding:18px 14px 36px;
    }

    .consumer-booking-page .container{
        max-width:100%;
        padding-left:0;
        padding-right:0;
    }

    .consumer-booking-header{
        flex-direction:column;
        align-items:stretch;
        gap:16px;
        margin:20px 0 22px;
    }

    .consumer-booking-header h1{
        font-size:34px;
        line-height:1.08;
        letter-spacing:-.6px;
    }

    .consumer-booking-header p{
        font-size:15px;
    }

    .consumer-booking-header .booking-btn{
        width:100%;
    }

    .dashboard-back-btn{
        width:100%;
        justify-content:center;
        margin-bottom:0;
    }

    .consumer-booking-toolbar{
        gap:14px;
        margin-bottom:22px;
    }

    .consumer-booking-search{
        width:100%;
        height:54px;
        border-radius:16px;
    }

    .consumer-booking-filter{
        width:100%;
        display:grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:10px;
    }

    .filter-btn{
        width:100%;
        height:48px;
        padding:0 12px;
        border-radius:14px;
        font-size:14px;
    }

    .consumer-booking-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .consumer-booking-card{
        padding:18px;
        border-radius:22px;
    }

    .consumer-booking-card::after{
        top:42px;
        height:60px;
    }

    .consumer-booking-top{
        flex-direction:column;
        align-items:stretch;
        gap:16px;
        padding-bottom:18px;
        margin-bottom:18px;
    }

    .consumer-booking-user{
        gap:14px;
    }

    .consumer-booking-user img{
        width:58px;
        height:58px;
        flex-basis:58px;
    }

    .consumer-booking-user h4{
        font-size:22px;
        line-height:1.15;
        overflow-wrap:anywhere;
    }

    .consumer-booking-user span{
        font-size:14px;
    }

    .consumer-booking-status{
        align-self:flex-start;
        font-size:13px;
    }

    .consumer-booking-info{
        grid-template-columns:1fr;
        gap:10px;
    }

    .booking-info-item{
        min-height:auto;
        padding:16px;
        border-radius:16px;
    }

    .booking-info-item small{
        margin-bottom:8px;
    }

    .booking-info-item h6{
        font-size:20px;
    }

    .consumer-booking-footer{
        flex-direction:column;
        align-items:stretch;
        gap:10px;
        margin-top:16px;
    }

    .booking-btn{
        width:100%;
        min-height:50px;
        border-radius:15px;
    }

    .consumer-pagination-wrapper{
        margin-top:28px;
        padding-bottom:8px;
    }

    .consumer-pagination-wrapper nav > div:last-child{
        flex-direction:column !important;
        gap:12px !important;
        text-align:center;
    }
}

@media(max-width:520px){
    .dashboard-main{
        padding-left:12px;
        padding-right:12px;
    }

    .dashboard-title,
    .consumer-booking-header h1{
        font-size:30px;
    }

    .dashboard-topbar-right{
        grid-template-columns:1fr 48px 48px;
    }

    .dashboard-icon-btn{
        width:48px;
        height:48px;
    }

    .dashboard-stats-grid,
    .consumer-analytics-grid{
        grid-template-columns:1fr;
    }

    .dashboard-stat-card,
    .analytics-card{
        min-height:118px;
    }

    .dashboard-stat-card h3,
    .analytics-card h3{
        font-size:36px;
    }

    .dashboard-card,
    .consumer-booking-card{
        padding:16px;
    }

    .dashboard-section-header h3{
        font-size:24px;
    }

    .dashboard-session-user h5{
        font-size:20px;
    }

    .consumer-booking-filter{
        grid-template-columns:1fr;
    }

    .consumer-pagination-wrapper nav > div:last-child > div:last-child > span{
        max-width:100%;
        overflow-x:auto;
    }
}

/* =========================================
   SESSION DETAILS PAGE POLISH + RESPONSIVE
========================================= */

.session-details-page{
    background:var(--dash-bg, #F6F8FB);
    min-height:100vh;
}

.session-details-page .dashboard-main{
    max-width:1180px;
    width:calc(100% - 260px);
}

.session-details-page .consumer-booking-header{
    margin:0 0 28px;
    padding:0;
}

.session-details-page .consumer-booking-header h1{
    font-size:44px;
    letter-spacing:-1px;
}

.session-details-page .consumer-booking-header p{
    font-size:16px;
}

.session-details-card{
    margin-bottom:24px;
    padding:30px;
    border-radius:28px;
}

.session-details-card::after{
    top:48px;
    height:76px;
}

.session-expert-section{
    align-items:center;
}

.session-expert-image{
    width:74px !important;
    height:74px !important;
    flex-basis:74px !important;
}

.session-expert-name{
    max-width:560px;
    overflow-wrap:anywhere;
}

.session-expert-category{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:0 12px;
    border-radius:999px;
    background:#FFF1EB;
    color:var(--booking-primary, #FF6B2C) !important;
    font-size:13px !important;
    font-weight:800 !important;
}

.session-info-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:14px;
}

.session-info-grid .booking-info-item{
    min-height:136px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.session-details-card .consumer-booking-footer{
    padding-top:22px;
    margin-top:24px;
    border-top:1px solid var(--booking-border, #E5EAF1);
}

.session-secondary-btn{
    min-height:52px;
    padding:0 22px;
    border:none;
    outline:none;
    border-radius:16px;
    background:#EEF4FB;
    color:#2563EB;
    font-size:15px;
    font-weight:800;
    text-decoration:none;
    transition:all .25s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.session-secondary-btn:hover{
    background:#E2EAF4;
    color:#1D4ED8;
    transform:translateY(-2px);
}

.session-notes-box{
    position:relative;
    padding:22px 24px 22px 58px;
    border-radius:20px;
    background:#F8FAFC;
    border:1px solid var(--dash-border, #E5EAF1);
    color:#334155;
    font-size:16px;
    font-weight:600;
    line-height:1.75;
}

.session-notes-box::before{
    content:'i';
    position:absolute;
    left:22px;
    top:24px;
    width:24px;
    height:24px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,107,44,.12);
    color:var(--dash-primary, #FF6B2C);
    font-size:14px;
    font-weight:900;
    font-style:normal;
}

body.dark-mode .session-details-page{
    background:#0B1220;
}

body.dark-mode .session-details-page .dashboard-main{
    background:radial-gradient(circle at top right, rgba(255,107,44,.10), transparent 28%), #0B1220;
}

body.dark-mode .session-expert-category{
    background:rgba(255,107,44,.16);
    color:#FFB088 !important;
}

body.dark-mode .session-details-card .consumer-booking-footer{
    border-color:#29364D;
}

body.dark-mode .session-notes-box{
    background:#151E30;
    border-color:#29364D;
    color:#CBD5E1;
}

@media(max-width:1200px){
    .session-details-page .dashboard-main{
        width:calc(100% - 92px);
    }

    .session-info-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:900px){
    .session-details-page .dashboard-main{
        width:100%;
        max-width:none;
        margin-left:0;
        padding:20px 14px 104px;
    }

    .session-details-page .consumer-booking-header{
        gap:16px;
        margin-bottom:20px;
    }

    .session-details-page .consumer-booking-header h1{
        font-size:34px;
    }

    .session-details-card{
        padding:18px;
        border-radius:22px;
    }

    .session-expert-section{
        align-items:stretch;
    }

    .session-expert-image{
        width:58px !important;
        height:58px !important;
        flex-basis:58px !important;
    }

    .session-expert-category{
        min-height:26px;
        padding:0 10px;
        font-size:12px !important;
    }

    .session-info-grid{
        grid-template-columns:1fr;
        gap:10px;
    }

    .session-info-grid .booking-info-item{
        min-height:auto;
        justify-content:flex-start;
    }

    .session-details-card .consumer-booking-footer{
        padding-top:16px;
        margin-top:16px;
    }

    .session-secondary-btn{
        width:100%;
        min-height:50px;
        border-radius:15px;
    }

    .session-notes-box{
        padding:48px 16px 18px;
        font-size:15px;
        line-height:1.65;
    }

    .session-notes-box::before{
        left:16px;
        top:16px;
    }
}

@media(max-width:520px){
    .session-details-page .dashboard-main{
        padding-left:12px;
        padding-right:12px;
    }

    .session-details-page .consumer-booking-header h1{
        font-size:30px;
    }

    .session-details-page .consumer-booking-header p{
        font-size:14px;
    }

    .session-details-card{
        padding:16px;
    }

    .session-expert-name{
        font-size:21px !important;
    }

    .session-notes-box{
        border-radius:18px;
    }
}

/* Session details centered layout fix */
.session-details-page{
    display:block;
}

.session-details-page .dashboard-main{
    width:min(100%, 1480px) !important;
    max-width:1480px !important;
    margin:0 auto !important;
    padding:52px 24px 56px !important;
}

.session-details-page .consumer-booking-header,
.session-details-page .session-details-card,
.session-details-page .dashboard-card{
    width:100%;
}

@media(max-width:900px){
    .session-details-page .dashboard-main{
        width:100% !important;
        max-width:none !important;
        margin:0 !important;
        padding:20px 14px 104px !important;
    }
}

@media(max-width:520px){
    .session-details-page .dashboard-main{
        padding-left:12px !important;
        padding-right:12px !important;
    }
}

/* Mobile compact pagination fix */
@media(max-width:600px){
    .consumer-pagination-wrapper{
        width:100%;
        margin-top:26px;
        overflow:hidden;
    }

    .consumer-pagination-wrapper nav{
        width:100%;
    }

    .consumer-pagination-wrapper nav > div:last-child{
        width:100%;
        flex-direction:column !important;
        align-items:center !important;
        justify-content:center !important;
        gap:12px !important;
    }

    .consumer-pagination-wrapper nav > div:last-child > div:first-child,
    .consumer-pagination-wrapper nav > div:last-child > div:first-child p{
        width:100% !important;
        text-align:center !important;
        font-size:14px !important;
        line-height:1.45 !important;
    }

    .consumer-pagination-wrapper nav > div:last-child > div:last-child{
        width:100% !important;
        display:flex !important;
        justify-content:center !important;
    }

    .consumer-pagination-wrapper nav > div:last-child > div:last-child > span{
        width:auto !important;
        max-width:100% !important;
        display:inline-flex !important;
        align-items:center !important;
        justify-content:center !important;
        gap:8px !important;
        padding:8px !important;
        overflow:visible !important;
    }

    .consumer-pagination-wrapper nav > div:last-child > div:last-child > span > a:not([rel="prev"]):not([rel="next"]){
        display:none !important;
    }

    .consumer-pagination-wrapper nav > div:last-child > div:last-child span[aria-current],
    .consumer-pagination-wrapper nav > div:last-child > div:last-child span[aria-disabled]{
        display:inline-flex !important;
    }

    .consumer-pagination-wrapper nav > div:last-child > div:last-child a,
    .consumer-pagination-wrapper nav > div:last-child > div:last-child span[aria-current] > span,
    .consumer-pagination-wrapper nav > div:last-child > div:last-child span[aria-disabled] > span{
        width:42px !important;
        height:42px !important;
        min-width:42px !important;
        min-height:42px !important;
        flex:0 0 42px !important;
        border-radius:12px !important;
    }
}



.dashboard-menu li a{
    position: relative;
}

.dashboard-sidebar-badge{
    margin-left: auto;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 50px;
    background: #ff4d14;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}