/*
 * Scholarb Global Design System variables and overrides
 */

:root {
    --sb-primary: #0d9488;         /* Vibrant Professional Teal */
    --sb-primary-hover: #0f766e;   /* Darker Teal for hover states */
    --sb-bg-main: #f8fafc;         /* Soft Clean Light Gray background */
    --sb-text-dark: #0f172a;       /* Slate 900 for high readability */
    --sb-text-muted: #475569;      /* Slate 600 for subtext */
    --sb-border: #e2e8f0;          /* Slate 200 for clean subtle borders */
    --sb-white: #ffffff;
    --sb-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --sb-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --sb-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    --sb-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --sb-font-secondary: 'Roboto', sans-serif;
}

/* Global Font Overrides for Astra */
body, 
p, 
span, 
input, 
select, 
textarea, 
button {
    font-family: var(--sb-font-primary) !important;
    color: var(--sb-text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sb-font-primary) !important;
    font-weight: 600 !important;
    color: var(--sb-text-dark);
}

/* Global Base Styles */
body.site-bg-custom-color {
    background-color: var(--sb-bg-main) !important;
}

/* Custom HTML components base stylesheet */
.sb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.sb-btn-primary {
    background-color: var(--sb-primary);
    color: var(--sb-white);
}

.sb-btn-primary:hover {
    background-color: var(--sb-primary-hover);
    color: var(--sb-white);
}

.sb-btn-secondary {
    background-color: transparent;
    border: 1px solid var(--sb-border);
    color: var(--sb-text-dark);
}

.sb-btn-secondary:hover {
    background-color: var(--sb-bg-main);
    border-color: var(--sb-text-muted);
}/* ============================================================
   ASTRA HOMEPAGE LAYOUT RESET
   Forces the shortcode output to be full-width and properly
   removes Astra's default content padding/max-width on this page.
   ============================================================ */

/* Remove Astra's container and content constraints globally on home & dashboards */
.home .ast-container,
.home .entry-content,
.home .page-content,
.home .ast-container .entry-content,
.page-teacher-dashboard .ast-container,
.page-teacher-dashboard .entry-content,
.page-teacher-dashboard .page-content,
.page-teacher-dashboard .ast-container .entry-content,
.page-teacher-dashboard .site-content,
.page-teacher-dashboard #content,
.page-teacher-dashboard #primary,
.page-student-dashboard .ast-container,
.page-student-dashboard .entry-content,
.page-student-dashboard .page-content,
.page-student-dashboard .ast-container .entry-content,
.page-student-dashboard .site-content,
.page-student-dashboard #content,
.page-student-dashboard #primary {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Remove any Astra-added bottom margin after the article */
.home article.page,
.home .hentry,
.page-teacher-dashboard article.page,
.page-teacher-dashboard .hentry,
.page-student-dashboard article.page,
.page-student-dashboard .hentry {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Clear, native full-width for #sb-home shortcode wrapper */
.home #sb-home {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 72px !important; /* Spacing for the fixed navbar */
    position: relative !important;
    overflow-x: hidden;
}
.page-teacher-dashboard #sb-home,
.page-student-dashboard #sb-home {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    overflow-x: hidden;
}

/* Hide global navbar on dashboard pages */
.page-teacher-dashboard #sb-navbar,
.page-student-dashboard #sb-navbar {
    display: none !important;
}

/* Make #sb-navbar locked to top of the screen */
#sb-navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    z-index: 99999 !important;
}

/* Adjust navbar top position when WordPress Admin Bar is visible */
.admin-bar #sb-navbar {
    top: 32px !important;
}
@media screen and (max-width: 782px) {
    .admin-bar #sb-navbar {
        top: 46px !important;
    }
}

/* Hide Astra Default Header, Footer, and Page Title on the Homepage & Dashboards */
.home #masthead,
.home #colophon,
.home .site-header,
.home .site-footer,
.page-teacher-dashboard #masthead,
.page-teacher-dashboard #colophon,
.page-teacher-dashboard .site-header,
.page-teacher-dashboard .site-footer,
.page-teacher-dashboard .entry-header,
.page-student-dashboard #masthead,
.page-student-dashboard #colophon,
.page-student-dashboard .site-header,
.page-student-dashboard .site-footer,
.page-student-dashboard .entry-header {
    display: none !important;
    height: 0 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ============================================================
   HOW IT WORKS & CTA STYLING
   ============================================================ */
#sb-how-it-works {
    padding: 80px 0;
    background-color: var(--sb-white);
}
.sb-how-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.sb-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}
.sb-step-card {
    position: relative;
    background: var(--sb-bg-main);
    border: 1px solid var(--sb-border);
    border-radius: 16px;
    padding: 40px 32px 32px 32px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.sb-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sb-shadow-lg);
    border-color: #cbd5e1;
}
.sb-step-badge {
    position: absolute;
    top: -16px;
    left: 32px;
    width: 32px;
    height: 32px;
    background-color: var(--sb-primary);
    color: var(--sb-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--sb-shadow);
}
.sb-step-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: rgba(13, 148, 136, 0.1);
    color: var(--sb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.sb-step-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--sb-text-dark) !important;
    margin: 0 0 12px 0 !important;
}
.sb-step-desc {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: var(--sb-text-muted) !important;
    margin: 0 !important;
}

/* CTA Banner */
.sb-cta-banner {
    position: relative;
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #115e59 100%);
    border-radius: 24px;
    padding: 56px 64px;
    overflow: hidden;
    box-shadow: var(--sb-shadow-lg);
}
.sb-cta-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(20px);
}
.sb-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.sb-cta-text {
    flex: 1;
}
.sb-cta-title {
    color: var(--sb-white) !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    margin: 0 0 12px 0 !important;
    line-height: 1.2 !important;
}
.sb-cta-subtitle {
    color: #ccfbf1 !important;
    font-size: 16px !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}
.sb-cta-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}
.sb-cta-btn-primary {
    background-color: var(--sb-white);
    color: #0f766e !important;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--sb-shadow);
}
.sb-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--sb-shadow-lg);
}
.sb-cta-btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--sb-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
}
.sb-cta-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .sb-cta-banner {
        padding: 48px;
    }
    .sb-cta-title {
        font-size: 28px !important;
    }
}
@media (max-width: 768px) {
    .sb-steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sb-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .sb-cta-buttons {
        justify-content: center;
        width: 100%;
    }
}
@media (max-width: 480px) {
    #sb-how-it-works {
        padding: 60px 0;
    }
    .sb-cta-banner {
        padding: 32px 24px;
    }
    .sb-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .sb-cta-btn-primary, .sb-cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   TUTORS SEARCH & DIRECTORY STYLING
   ============================================================ */
.sb-directory-wrapper {
    background-color: var(--sb-bg-main) !important;
}
#sb-tutors-directory {
    padding: 60px 0 100px 0;
    min-height: calc(100vh - 400px);
}
.sb-dir-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.sb-dir-header {
    margin-bottom: 40px;
}
.sb-dir-title {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: var(--sb-text-dark) !important;
    margin: 0 0 8px 0 !important;
}
.sb-dir-subtitle {
    font-size: 16px !important;
    color: var(--sb-text-muted) !important;
    margin: 0 !important;
}
.sb-dir-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

/* Sidebar Filters */
.sb-filter-sidebar {
    background-color: var(--sb-white);
    border: 1px solid var(--sb-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--sb-shadow-sm);
    position: sticky;
    top: 100px; /* Accounts for fixed navbar */
}
.sb-filter-group {
    margin-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
}
.sb-filter-group:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}
.sb-filter-label {
    display: block;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--sb-text-dark) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px !important;
}
.sb-filter-input {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px !important;
    border: 1px solid var(--sb-border);
    border-radius: 8px;
    background-color: var(--sb-bg-main);
    color: var(--sb-text-dark);
    transition: all 0.2s;
}
.sb-filter-input:focus {
    border-color: var(--sb-primary);
    background-color: var(--sb-white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.sb-filter-select {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px !important;
    border: 1px solid var(--sb-border);
    border-radius: 8px;
    background-color: var(--sb-bg-main);
    color: var(--sb-text-dark);
    transition: all 0.2s;
    cursor: pointer;
}
.sb-filter-select:focus {
    border-color: var(--sb-primary);
    background-color: var(--sb-white);
    outline: none;
}
.sb-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sb-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px !important;
    color: var(--sb-text-muted) !important;
    cursor: pointer;
    user-select: none;
}
.sb-radio-label input[type="radio"] {
    accent-color: var(--sb-primary);
    width: 16px;
    height: 16px;
    margin: 0;
}
.sb-filter-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.sb-filter-btn-apply {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sb-white);
    background-color: var(--sb-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
}
.sb-filter-btn-apply:hover {
    background-color: var(--sb-primary-hover);
}
.sb-filter-btn-clear {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sb-text-muted);
    background-color: transparent;
    border: 1px solid var(--sb-border);
    border-radius: 8px;
    text-decoration: none !important;
    text-align: center;
    transition: all 0.2s;
    display: block;
}
.sb-filter-btn-clear:hover {
    background-color: var(--sb-bg-main);
    color: var(--sb-text-dark);
}

/* Results Pane */
.sb-results-pane {
    display: flex;
    flex-direction: column;
}
.sb-results-count {
    font-size: 14px !important;
    color: var(--sb-text-muted) !important;
    margin-bottom: 24px;
}
.sb-results-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Directory Card */
.sb-directory-card {
    display: flex;
    background-color: var(--sb-white);
    border: 1px solid var(--sb-border);
    border-radius: 16px;
    padding: 24px;
    gap: 24px;
    transition: all 0.2s ease-in-out;
    box-shadow: var(--sb-shadow-sm);
}
.sb-directory-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--sb-shadow-lg);
    border-color: #cbd5e1;
}
.sb-dir-card-photo-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background-color: #f1f5f9;
}
.sb-dir-card-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sb-dir-card-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: var(--sb-white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 6px;
    border-radius: 6px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.sb-dir-card-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.sb-dir-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}
.sb-dir-card-name {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--sb-text-dark) !important;
    margin: 0 !important;
}
.sb-dir-card-rating-block {
    display: flex;
    align-items: center;
    gap: 4px;
}
.sb-dir-card-rating {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--sb-text-dark) !important;
}
.sb-dir-card-reviews {
    font-size: 13px !important;
    color: var(--sb-text-muted) !important;
}
.sb-dir-card-bio {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: var(--sb-text-muted) !important;
    margin: 0 0 20px 0 !important;
    flex-grow: 1;
}
.sb-dir-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    margin-bottom: 16px;
}
.sb-dir-card-price {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--sb-primary) !important;
}
.sb-dir-card-unit {
    font-size: 14px !important;
    color: var(--sb-text-muted) !important;
}
.sb-dir-card-mode-badge {
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 4px 10px;
    border-radius: 20px;
}
.sb-mode-online {
    background-color: rgba(13, 148, 136, 0.1);
    color: var(--sb-primary) !important;
}
.sb-mode-offline {
    background-color: rgba(99, 102, 241, 0.1);
    color: #6366f1 !important;
}
.sb-dir-card-actions {
    display: flex;
    gap: 12px;
}
.sb-dir-btn-primary {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sb-white) !important;
    background-color: var(--sb-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none !important;
    transition: background-color 0.2s;
}
.sb-dir-btn-primary:hover {
    background-color: var(--sb-primary-hover);
}
.sb-dir-btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sb-text-muted) !important;
    background-color: transparent;
    border: 1px solid var(--sb-border);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.2s;
}
.sb-dir-btn-secondary:hover {
    background-color: var(--sb-bg-main);
    color: var(--sb-text-dark) !important;
}

/* Empty State */
.sb-directory-empty-state {
    text-align: center;
    background-color: var(--sb-white);
    border: 1px solid var(--sb-border);
    border-radius: 16px;
    padding: 60px 40px;
    box-shadow: var(--sb-shadow-sm);
}
.sb-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.sb-empty-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 0 8px 0 !important;
}
.sb-empty-subtitle {
    font-size: 14px !important;
    color: var(--sb-text-muted) !important;
    margin: 0 0 24px 0 !important;
}
.sb-empty-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: var(--sb-primary);
    color: var(--sb-white) !important;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background-color 0.2s;
}
.sb-empty-btn:hover {
    background-color: var(--sb-primary-hover);
}

/* RESPONSIVE DIRECTORY STYLING */
@media (max-width: 992px) {
    .sb-dir-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sb-filter-sidebar {
        position: static;
    }
}
@media (max-width: 640px) {
    #sb-tutors-directory {
        padding: 40px 0 60px 0;
    }
    .sb-dir-title {
        font-size: 28px !important;
    }
    .sb-directory-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .sb-dir-card-photo-wrapper {
        width: 120px;
        height: 120px;
    }
    .sb-dir-card-top {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .sb-dir-card-footer {
        flex-direction: column;
        gap: 12px;
    }
    .sb-dir-card-actions {
        flex-direction: column;
        width: 100%;
    }
    .sb-dir-btn-primary, .sb-dir-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   TUTOR PROFILE PAGE HERO BANNER
   ============================================================ */
.sb-profile-wrapper {
    background-color: var(--sb-bg-main) !important;
}
#sb-tutor-profile {
    padding: 0 0 100px 0;
}
.sb-profile-hero {
    background-color: #4f6374; /* Dark slate/blue-gray banner */
    padding: 60px 0;
    color: #ffffff;
    margin-bottom: 50px;
}
.sb-profile-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.sb-profile-hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}
.sb-profile-hero-avatar-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 16px; /* Rounded corners as per mockup */
    overflow: hidden;
    flex-shrink: 0;
    border: 6px solid #ffffff; /* White border/stroke */
    box-shadow: var(--sb-shadow-lg);
    background-color: #ffffff;
}
.sb-profile-hero-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sb-profile-hero-details {
    flex-grow: 1;
}
.sb-profile-hero-badge-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.sb-profile-hero-badge {
    background-color: #f1f5f9;
    color: #0f172a;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 6px 14px;
    border-radius: 20px;
}
.sb-profile-verified-badge {
    background-color: var(--sb-primary);
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sb-profile-verified-badge svg {
    color: #ffffff;
}
.sb-profile-hero-name {
    font-size: 38px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.2 !important;
}
.sb-profile-hero-headline {
    font-size: 18px !important;
    color: #cbd5e1 !important;
    margin: 0 0 20px 0 !important;
    font-weight: 500;
}
.sb-profile-hero-meta-row {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.sb-profile-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px !important;
    color: #e2e8f0 !important;
}
.sb-profile-hero-meta-item strong {
    color: #ffffff !important;
    font-weight: 700;
}
.sb-profile-hero-meta-item svg {
    color: #38bdf8; /* Soft blue star/badge color */
}

/* Page Grid Layout */
.sb-profile-grid-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start;
}
.sb-profile-left-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.sb-profile-section,
.sb-profile-section-stub {
    background-color: var(--sb-white);
    border: 1px solid var(--sb-border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--sb-shadow-sm);
}
.sb-profile-section-title,
.sb-stub-section-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--sb-text-dark) !important;
    margin: 0 0 20px 0 !important;
    border-bottom: 2px solid var(--sb-bg-main);
    padding-bottom: 12px;
}
.sb-profile-bio-text,
.sb-profile-methodology-text {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: var(--sb-text-muted) !important;
    margin: 0 0 16px 0 !important;
}
.sb-profile-methodology-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 0 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sb-profile-methodology-list li {
    font-size: 14px !important;
    color: var(--sb-text-muted) !important;
    position: relative;
    padding-left: 24px;
    line-height: 1.5 !important;
}
.sb-profile-methodology-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--sb-primary);
    font-weight: 800;
    font-size: 16px;
}
.sb-profile-section-subtitle {
    font-size: 14px !important;
    color: var(--sb-text-muted) !important;
    margin: -10px 0 24px 0 !important;
    opacity: 0.8;
}
.sb-profile-subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 10px;
}
.sb-profile-subject-card {
    background-color: var(--sb-bg-main);
    border: 1px solid var(--sb-border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.25s ease;
}
.sb-profile-subject-card:hover {
    transform: translateY(-2px);
    border-color: var(--sb-primary);
    box-shadow: var(--sb-shadow);
}
.sb-profile-subject-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.sb-profile-subject-icon {
    font-size: 20px;
}
.sb-profile-subject-name {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--sb-text-dark) !important;
    margin: 0 !important;
}
.sb-profile-subject-topics {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sb-profile-subject-topics li {
    font-size: 13px !important;
    color: var(--sb-text-muted) !important;
    position: relative;
    padding-left: 18px;
}
.sb-profile-subject-topics li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--sb-primary);
    font-weight: bold;
    font-size: 14px;
}
.sb-stub-box-placeholder {
    background-color: var(--sb-bg-main);
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    height: 120px;
}

/* Education Timeline Styles */
.sb-profile-education-timeline {
    position: relative;
    border-left: 2px solid var(--sb-border);
    padding-left: 24px;
    margin-left: 8px;
    margin-top: 10px;
}
.sb-profile-education-item {
    position: relative;
    margin-bottom: 8px;
}
.sb-profile-education-marker {
    position: absolute;
    left: -31px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--sb-primary);
    border: 2px solid var(--sb-white);
}
.sb-profile-education-degree {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--sb-text-dark) !important;
    margin: 0 0 4px 0 !important;
}
.sb-profile-education-meta {
    font-size: 13px !important;
    color: var(--sb-text-muted) !important;
    margin: 0 !important;
    opacity: 0.8;
}

/* Reviews Grid Styles */
.sb-profile-reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}
.sb-profile-review-card {
    background-color: var(--sb-white);
    border: 1px solid var(--sb-border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--sb-shadow-sm);
}
.sb-profile-review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}
.sb-profile-review-avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--sb-bg-main);
    color: var(--sb-primary);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sb-border);
}
.sb-profile-review-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sb-profile-review-name {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--sb-text-dark) !important;
    margin: 0 !important;
}
.sb-profile-review-stars-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sb-profile-review-stars {
    display: flex;
    gap: 2px;
}
.sb-profile-review-date {
    font-size: 12px !important;
    color: var(--sb-text-muted) !important;
    opacity: 0.8;
}
.sb-profile-review-text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: var(--sb-text-muted) !important;
    margin: 0 !important;
}
.sb-profile-right-column {
    position: sticky;
    top: 100px;
}
.sb-profile-sidebar-stub {
    background-color: var(--sb-white);
    border: 1px solid var(--sb-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--sb-shadow-sm);
}
.sb-stub-sidebar-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--sb-text-dark) !important;
    margin: 0 0 16px 0 !important;
}
.sb-stub-box-placeholder.select-slot-box {
    height: 280px;
}

/* Booking Card & Calendar Styles */
.sb-booking-card {
    background-color: var(--sb-white);
    border: 1px solid var(--sb-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sb-shadow);
}
.sb-booking-card-header {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    padding: 16px 20px;
    text-align: center;
    color: var(--sb-white);
}
.sb-booking-price-row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--sb-white);
}
.sb-booking-price {
    font-size: 26px !important;
    font-weight: 800 !important;
}
.sb-booking-unit {
    font-size: 14px !important;
    opacity: 0.9;
}
.sb-booking-promo {
    font-size: 12px !important;
    margin: 4px 0 0 0 !important;
    opacity: 0.95;
    font-weight: 500;
    color: var(--sb-white) !important;
}
.sb-booking-card-body {
    padding: 16px 20px;
}
.sb-calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.sb-calendar-nav-btn {
    background: #f1f5f9 !important;
    border: none !important;
    padding: 0 !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer;
    color: var(--sb-text-dark) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    transition: all 0.2s ease;
}
.sb-calendar-nav-btn:hover {
    background: #e2e8f0 !important;
}
.sb-calendar-month-year {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--sb-text-dark) !important;
}
.sb-calendar-weekdays {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    text-align: center !important;
    margin-bottom: 6px !important;
    width: 100% !important;
}
.sb-calendar-weekdays span {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: var(--sb-text-muted) !important;
    opacity: 0.8 !important;
}
.sb-calendar-dates {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 4px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.sb-calendar-day-btn {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    border-radius: 50% !important;
    font-size: 13px !important;
    cursor: pointer;
    color: var(--sb-text-dark) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    transition: all 0.2s ease;
}
.sb-calendar-day-btn:hover {
    background-color: var(--sb-bg-main) !important;
    color: var(--sb-primary) !important;
}
.sb-calendar-day-btn.selected {
    background-color: var(--sb-primary) !important;
    color: var(--sb-white) !important;
    font-weight: 700 !important;
}
.sb-calendar-empty {
    display: block !important;
    width: 32px !important;
    height: 32px !important;
    box-sizing: border-box !important;
}
.sb-time-slots-section {
    margin-top: 16px !important;
    border-top: 1px solid var(--sb-border) !important;
    padding-top: 14px !important;
}
.sb-sidebar-section-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--sb-text-dark) !important;
    margin-bottom: 8px !important;
}
.sb-time-slots-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
}
.sb-time-slot-btn {
    background-color: var(--sb-white) !important;
    border: 1px solid var(--sb-border) !important;
    padding: 8px 10px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: var(--sb-text-muted) !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: all 0.2s ease;
}
.sb-time-slot-btn:hover {
    border-color: var(--sb-primary) !important;
    color: var(--sb-primary) !important;
    background-color: #f0fdfa !important;
}
.sb-time-slot-btn.active {
    background-color: var(--sb-primary) !important;
    border-color: var(--sb-primary) !important;
    color: var(--sb-white) !important;
}
.sb-booking-submit-btn {
    margin-top: 16px !important;
    width: 100% !important;
    background-color: #2b82d9 !important;
    border: none !important;
    color: var(--sb-white) !important;
    padding: 12px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(43, 130, 217, 0.2) !important;
    transition: all 0.2s ease;
}
.sb-booking-submit-btn:hover {
    background-color: #1d6fa5 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(43, 130, 217, 0.3) !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .page-tutor-profile .ast-container,
    .page-tutor-profile .entry-content,
    .page-tutor-profile .page-content,
    .page-tutor-profile #primary,
    .page-tutor-profile #main,
    .page-tutor-profile article,
    .page-tutor-profile .site-content,
    .page-tutor-profile #page {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .sb-profile-grid-layout {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 16px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .sb-profile-left-column {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    .sb-profile-section {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .sb-profile-right-column {
        width: 100% !important;
        max-width: 100% !important;
        position: static !important;
        margin: 30px 0 0 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 768px) {
    .sb-profile-hero {
        padding: 40px 0;
    }
    .sb-profile-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .sb-profile-hero-badge-row {
        justify-content: center;
    }
    .sb-profile-hero-meta-row {
        justify-content: center;
        gap: 16px;
    }
    .sb-profile-grid-layout {
        padding: 0 16px !important;
    }
    .sb-profile-section {
        padding: 20px !important;
        border-radius: 12px !important;
    }
    .sb-profile-left-column {
        gap: 20px !important;
    }
}

/* ============================================================
   TUTOR PROFILE PAGE LAYOUT RESET
   Hides Astra default header/footer and makes canvas full width
   ============================================================ */
.page-tutor-profile #masthead,
.page-tutor-profile #colophon,
.page-tutor-profile .site-header,
.page-tutor-profile .site-footer,
.page-tutor-profile .entry-header,
.page-tutors #masthead,
.page-tutors #colophon,
.page-tutors .site-header,
.page-tutors .site-footer,
.page-tutors .entry-header {
    display: none !important;
    height: 0 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.page-tutor-profile .ast-container,
.page-tutors .ast-container,
.page-tutor-profile .entry-content,
.page-tutors .entry-content,
.page-tutor-profile .page-content,
.page-tutors .page-content,
.page-tutor-profile .ast-container .entry-content,
.page-tutors .ast-container .entry-content,
.page-tutor-profile #primary,
.page-tutors #primary,
.page-tutor-profile #main,
.page-tutors #main,
.page-tutor-profile article,
.page-tutors article,
.page-tutor-profile .site-content,
.page-tutors .site-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.page-tutor-profile,
.page-tutors,
.page-tutor-profile html,
.page-tutors html,
.page-tutor-profile body,
.page-tutors body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.page-tutor-profile #sb-home,
.page-tutors #sb-home {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 72px !important; /* Spacing for the fixed navbar */
    position: relative !important;
    overflow-x: hidden;
}







/* ========================================== 
   SHARED NAVBAR STYLES 
   ========================================== */
/* ============================================================
   SECTION 1 — NAVBAR STYLES (UI/UX Pro Max)
   ============================================================ */
#sb-navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    z-index: 99999 !important;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

/* Adjust navbar top position when WordPress Admin Bar is visible */
.admin-bar #sb-navbar {
    top: 32px !important;
}
@media screen and (max-width: 782px) {
    .admin-bar #sb-navbar {
        top: 46px !important;
    }
}

.sb-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 72px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.sb-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}
.sb-nav-logo-icon {
    width: 36px;
    height: 36px;
    background: #0d9488;
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sb-nav-logo:hover .sb-nav-logo-icon {
    transform: rotate(-8deg) scale(1.05);
}
.sb-nav-logo-text {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -0.03em !important;
}
.sb-nav-logo-text span {
    color: #0d9488;
}

/* DESKTOP NAV LINKS */
.sb-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.sb-nav-link {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #475569 !important;
    text-decoration: none !important;
    position: relative;
    padding: 8px 0;
    transition: color 0.2s ease;
}
.sb-nav-link:hover {
    color: #0d9488 !important;
}
.sb-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0d9488;
    transition: width 0.2s ease;
}
.sb-nav-link:hover::after {
    width: 100%;
}

/* DESKTOP ACTIONS */
.sb-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sb-nav-login {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    text-decoration: none !important;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.2s ease;
}
.sb-nav-login:hover {
    background: #f1f5f9;
    color: #0f172a !important;
}
.sb-nav-signup {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: #0d9488;
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
}
.sb-nav-signup:hover {
    background: #0f766e;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.25);
}

/* HAMBURGER */
.sb-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}
.sb-hamburger:focus,
.sb-hamburger:active,
.sb-hamburger:hover,
.sb-hamburger:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
}
.sb-hamburger span {
    width: 100%;
    height: 2px;
    background-color: #0f172a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* MOBILE NAV DRAWER */
#sb-mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: #ffffff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 1px solid #e2e8f0;
}
#sb-mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sb-mobile-menu-inner {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sb-mob-link {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}
.sb-mob-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 10px 0;
}
.sb-mob-login {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    background: #f8fafc;
}
.sb-mob-signup {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: #0d9488;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
}

/* ============================================================


/* ========================================== 
   SHARED FOOTER STYLES 
   ========================================== */
/* ============================================================
   SECTION 5 — CUSTOM FOOTER STYLES
   ============================================================ */
#sb-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 40px;
    width: 100%;
    border-top: 1px solid #1e293b;
}
.sb-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.sb-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
.sb-footer-col {
    display: flex;
    flex-direction: column;
}
.sb-footer-brand .sb-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.sb-footer-logo-icon {
    width: 32px;
    height: 32px;
    background: #0d9488;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sb-footer-brand-name {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
}
.sb-footer-brand-name span {
    color: #0d9488;
}
.sb-footer-desc {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #94a3b8 !important;
    margin: 0 !important;
}
.sb-footer-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.05em !important;
    margin: 0 0 20px 0 !important;
}
.sb-footer-links {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}
.sb-footer-links li {
    margin-bottom: 12px;
}
.sb-footer-links a {
    color: #94a3b8 !important;
    font-size: 14px !important;
    transition: color 0.2s !important;
    text-decoration: none !important;
}
.sb-footer-links a:hover {
    color: #0d9488 !important;
}
.sb-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid #1e293b;
}
.sb-copyright {
    font-size: 13px !important;
    color: #64748b !important;
    margin: 0 !important;
}
.sb-social-links {
    display: flex;
    gap: 16px;
}
.sb-social-links a {
    color: #64748b !important;
    transition: color 0.2s !important;
}
.sb-social-links a:hover {
    color: #ffffff !important;
}

/* RESPONSIVE BREAKPOINTS FOR NEW SECTIONS */
@media (max-width: 1024px) {
    .sb-subjects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sb-tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .sb-footer-grid {
        gap: 32px;
    }
}

@media (max-width: 900px) {
    #sb-subjects, #sb-tutors {
        padding: 60px 0;
    }
    .sb-subjects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .sb-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .sb-section-title { font-size: 26px !important; }
    .sb-subjects-grid {
        grid-template-columns: 1fr;
    }
    .sb-tutors-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .sb-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sb-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ============================================================
   RESPONSIVE NAVBAR MEDIA QUERIES
   ============================================================ */
@media (max-width: 900px) {
    .sb-nav-links { display: none !important; }
    .sb-nav-actions { display: none !important; }
    .sb-hamburger { display: flex !important; }
    
    /* Hamburger Active Animation */
    .sb-hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .sb-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .sb-hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ============================================================
   DEDICATED LOGIN & REGISTER PAGE RESETS & STYLES (UI/UX Pro Max)
   ============================================================ */
.page-login #masthead,
.page-login #colophon,
.page-login .site-header,
.page-login .site-footer,
.page-login .entry-header,
.page-register #masthead,
.page-register #colophon,
.page-register .site-header,
.page-register .site-footer,
.page-register .entry-header {
    display: none !important;
    height: 0 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.page-login .ast-container,
.page-register .ast-container,
.page-login .entry-content,
.page-register .entry-content,
.page-login .page-content,
.page-register .page-content,
.page-login #primary,
.page-register #primary,
.page-login #main,
.page-register #main,
.page-login article,
.page-register article,
.page-login .site-content,
.page-register .site-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.page-login,
.page-register,
.page-login html,
.page-register html,
.page-login body,
.page-register body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.page-login #sb-home,
.page-register #sb-home {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 72px !important;
    position: relative !important;
    overflow-x: hidden;
}

.sb-auth-hidden {
    display: none !important;
}

.sb-auth-page-wrapper {
    width: 100% !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    background-color: #f8fafc !important;
}

.sb-auth-page-container {
    width: 100% !important;
    flex-grow: 1 !important;
    display: flex !important;
}

.sb-auth-page-left {
    width: 45% !important;
    background: linear-gradient(135deg, #0d9488 0%, #312e81 100%) !important;
    padding: 60px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    color: var(--sb-white) !important;
    box-sizing: border-box !important;
}

.sb-auth-page-left-content {
    max-width: 480px !important;
    display: flex !important;
    flex-direction: column !important;
}

.sb-auth-page-logo {
    font-size: 28px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
}

.sb-auth-page-left-title {
    font-size: 32px !important;
    font-weight: 800 !important;
    margin: 32px 0 16px 0 !important;
    line-height: 1.2 !important;
    color: var(--sb-white) !important;
}

.sb-auth-page-left-desc {
    font-size: 15px !important;
    opacity: 0.9 !important;
    line-height: 1.6 !important;
    margin: 0 0 32px 0 !important;
    color: #e2e8f0 !important;
}

.sb-auth-page-bullets {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.sb-auth-page-bullets li {
    font-size: 15px !important;
    font-weight: 500 !important;
}

.sb-auth-page-right {
    width: 55% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 60px !important;
    box-sizing: border-box !important;
}

.sb-auth-page-card {
    background-color: var(--sb-white) !important;
    width: 450px !important;
    max-width: 100% !important;
    border-radius: 16px !important;
    padding: 40px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05) !important;
    box-sizing: border-box !important;
    border: 1px solid var(--sb-border) !important;
}

.sb-auth-page-card-header {
    text-align: center !important;
    margin-bottom: 24px !important;
}

.sb-auth-page-card-header h2 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: var(--sb-text-dark) !important;
    margin: 0 !important;
}

.sb-auth-page-card-header p {
    font-size: 14px !important;
    color: var(--sb-text-muted) !important;
    margin: 6px 0 0 0 !important;
}

.sb-auth-progress-container {
    margin-bottom: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

.sb-auth-progress-labels {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 6px !important;
}

#sb-auth-progress-text {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--sb-primary) !important;
}

.sb-auth-progress-bar {
    width: 100% !important;
    height: 4px !important;
    background-color: #f1f5f9 !important;
    border-radius: 4px !important;
    overflow: hidden !important;
}

.sb-auth-progress-fill {
    height: 100% !important;
    background-color: var(--sb-primary) !important;
    width: 33.33% !important;
    border-radius: 4px !important;
    transition: width 0.3s ease !important;
}

.sb-auth-roles-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    margin-bottom: 20px !important;
    margin-top: 8px !important;
}

.sb-auth-role-card {
    background-color: var(--sb-white) !important;
    border: 1px solid var(--sb-border) !important;
    padding: 14px !important;
    border-radius: 12px !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.sb-auth-role-card:hover {
    border-color: #cbd5e1 !important;
    background-color: var(--sb-bg-main) !important;
}

.sb-auth-role-card.active {
    border-color: var(--sb-primary) !important;
    background-color: #f0fdfa !important;
}

.sb-role-icon {
    font-size: 22px !important;
    margin-bottom: 4px !important;
}

.sb-role-text {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--sb-text-dark) !important;
}

.sb-auth-form-group {
    margin-bottom: 20px !important;
    display: flex !important;
    flex-direction: column !important;
}

.sb-auth-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--sb-text-dark) !important;
    margin-bottom: 6px !important;
}

.sb-auth-input {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid var(--sb-border) !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    background-color: var(--sb-white) !important;
    color: var(--sb-text-dark) !important;
    box-sizing: border-box !important;
}

.sb-auth-input:focus {
    border-color: var(--sb-primary) !important;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1) !important;
}

.sb-auth-input.select-styled {
    height: 44px !important;
    cursor: pointer !important;
}

.sb-auth-actions-row {
    display: flex !important;
    gap: 12px !important;
    margin-top: 24px !important;
    width: 100% !important;
    align-items: center !important;
}

.sb-auth-back-btn {
    background-color: #f1f5f9 !important;
    color: var(--sb-text-dark) !important;
    border: none !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    height: auto !important;
    width: auto !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

.sb-auth-back-btn:hover {
    background-color: #e2e8f0 !important;
}

.sb-auth-submit-btn {
    flex-grow: 1 !important;
    background-color: var(--sb-primary) !important;
    color: var(--sb-white) !important;
    padding: 12px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15) !important;
    transition: all 0.2s ease !important;
    height: auto !important;
}

.sb-auth-submit-btn:hover {
    background-color: #0f766e !important;
    transform: translateY(-1px) !important;
}

.sb-auth-submit-btn:disabled {
    background-color: #cbd5e1 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

.sb-auth-prompt {
    text-align: center !important;
    font-size: 13px !important;
    margin: 20px 0 0 0 !important;
    color: var(--sb-text-muted) !important;
}

.sb-auth-prompt a {
    color: var(--sb-primary) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.sb-auth-prompt a:hover {
    text-decoration: underline !important;
}

.sb-auth-msg-box {
    padding: 12px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    display: none !important;
    box-sizing: border-box !important;
}

.sb-auth-msg-box.error {
    display: block !important;
    background-color: #fef2f2 !important;
    color: #b91c1c !important;
    border: 1px solid #fee2e2 !important;
}

.sb-auth-msg-box.success {
    display: block !important;
    background-color: #f0fdf4 !important;
    color: #15803d !important;
    border: 1px solid #dcfce7 !important;
}

.sb-auth-msg-box.info {
    display: block !important;
    background-color: #f0f9ff !important;
    color: #0369a1 !important;
    border: 1px solid #e0f2fe !important;
}

.text-center {
    text-align: center !important;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .sb-auth-page-container {
        flex-direction: column !important;
    }
    .sb-auth-page-left {
        display: none !important;
    }
    .sb-auth-page-right {
        width: 100% !important;
        padding: 30px 16px !important;
    }
    .sb-auth-page-card {
        width: 100% !important;
        padding: 24px 16px !important;
    }
}

/* ============================================================
   GAMIFIED WIZARD & TESTIMONIAL ADDITIONS
   ============================================================ */
.sb-auth-page-bullets {
    margin-bottom: 40px !important;
}
.sb-auth-testimonial-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    padding: 24px !important;
    margin-top: auto !important;
    box-sizing: border-box !important;
}
.sb-auth-testimonial-text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    font-style: italic !important;
    margin: 0 0 14px 0 !important;
    color: #e2e8f0 !important;
}
.sb-auth-testimonial-author {
    display: flex !important;
    flex-direction: column !important;
}
.sb-auth-author-name {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--sb-white) !important;
}
.sb-auth-author-role {
    font-size: 12px !important;
    color: #cbd5e1 !important;
    margin-top: 2px !important;
}

.sb-auth-role-card {
    position: relative !important;
}
.sb-role-check {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    width: 20px !important;
    height: 20px !important;
    background-color: var(--sb-primary) !important;
    color: var(--sb-white) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    font-weight: bold !important;
    opacity: 0 !important;
    transform: scale(0.5) !important;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.sb-auth-role-card.active .sb-role-check {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.sb-auth-dots-container {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 20px !important;
}
.sb-auth-dot {
    width: 8px !important;
    height: 8px !important;
    background-color: #cbd5e1 !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}
.sb-auth-dot.active {
    width: 20px !important;
    border-radius: 4px !important;
    background-color: var(--sb-primary) !important;
}

#sb-auth-form-content {
    transition: opacity 0.2s ease, transform 0.2s ease !important;
}
.sb-fade-exit {
    opacity: 0 !important;
    transform: translateX(-10px) !important;
}
.sb-fade-enter {
    opacity: 0 !important;
    transform: translateX(10px) !important;
}

.sb-auth-help-prompt {
    font-size: 12px !important;
    color: var(--sb-text-muted) !important;
    margin-top: 6px !important;
    display: block !important;
}

/* ============================================================
   REGISTRATION WIZARD — COMPONENT STYLES (.sb-reg-*)
   ============================================================ */

/* Card wrapper */
.sb-reg-card {
    background: var(--sb-white);
    width: 460px;
    max-width: 100%;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 12px 40px -8px rgba(0,0,0,0.08);
    border: 1px solid var(--sb-border);
    box-sizing: border-box;
}

/* Card Header */
.sb-reg-card-header {
    text-align: center;
    margin-bottom: 20px;
}
.sb-reg-card-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--sb-text-dark);
    margin: 0 0 4px 0;
}
.sb-reg-card-header p {
    font-size: 14px;
    color: var(--sb-text-muted);
    margin: 0;
}

/* Progress bar */
.sb-reg-progress-wrap {
    margin-bottom: 20px;
}
.sb-reg-progress-label {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--sb-primary);
    margin-bottom: 6px;
}
.sb-reg-progress-bar {
    width: 100%;
    height: 4px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}
.sb-reg-progress-fill {
    height: 100%;
    background: var(--sb-primary);
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* Message box */
.sb-reg-msg {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}
.sb-reg-msg--error   { background: #fef2f2; color: #b91c1c; border: 1px solid #fee2e2; }
.sb-reg-msg--success { background: #f0fdf4; color: #15803d; border: 1px solid #dcfce7; }
.sb-reg-msg--info    { background: #f0f9ff; color: #0369a1; border: 1px solid #e0f2fe; }

/* Step container */
.sb-reg-step {
    animation-duration: 0.25s;
    animation-fill-mode: both;
}

/* Role Selection Grid */
.sb-reg-step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--sb-text-muted);
    text-align: center;
    margin-bottom: 16px;
}
.sb-reg-role-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.sb-reg-role-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--sb-white);
    border: 2px solid var(--sb-border);
    border-radius: 14px;
    padding: 20px 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    width: 100%;
    box-shadow: none;
    height: auto;
}
.sb-reg-role-btn:hover {
    border-color: #94d9d3;
    background: #f0fdfa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px -4px rgba(13,148,136,0.12);
}
.sb-reg-role-btn.active {
    border-color: var(--sb-primary);
    background: #f0fdfa;
    box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
}
.sb-reg-role-emoji {
    font-size: 32px;
    line-height: 1;
    display: block;
}
.sb-reg-role-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--sb-text-dark);
    display: block;
}
.sb-reg-role-desc {
    font-size: 12px;
    color: var(--sb-text-muted);
    display: block;
}
.sb-reg-role-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--sb-primary);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.4);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sb-reg-role-btn.active .sb-reg-role-check {
    opacity: 1;
    transform: scale(1);
}

/* Form Fields */
.sb-reg-field {
    margin-bottom: 14px;
}
.sb-reg-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--sb-text-dark);
    margin-bottom: 6px;
}
.sb-reg-input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--sb-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--sb-text-dark);
    background: var(--sb-white);
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}
.sb-reg-input:focus {
    border-color: var(--sb-primary);
    box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}
.sb-reg-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230d9488' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.sb-reg-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Action Buttons */
.sb-reg-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
}
.sb-reg-back-btn {
    background: #f1f5f9;
    color: var(--sb-text-dark);
    border: none;
    padding: 11px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    width: auto;
    height: auto;
    box-shadow: none;
}
.sb-reg-back-btn:hover { background: #e2e8f0; }
.sb-reg-submit-btn {
    flex: 1;
    background: var(--sb-primary);
    color: var(--sb-white);
    border: none;
    padding: 11px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(13,148,136,0.2);
    height: auto;
}
.sb-reg-submit-btn:hover { background: #0f766e; transform: translateY(-1px); }
.sb-reg-submit-btn:disabled { background: #cbd5e1; cursor: not-allowed; box-shadow: none; transform: none; }

/* Dots */
.sb-reg-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.sb-reg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: all 0.3s ease;
}
.sb-reg-dot.active {
    width: 20px;
    border-radius: 4px;
    background: var(--sb-primary);
}

/* Transition animations */
.sb-fade-exit { opacity: 0; transform: translateX(-8px); transition: all 0.2s ease; }
.sb-fade-enter { animation: sbFadeIn 0.25s ease forwards; }
@keyframes sbFadeIn {
    from { opacity: 0; transform: translateX(8px); }
    to   { opacity: 1; transform: translateX(0);   }
}

/* Mobile responsive */
/* ============================================================
   REGISTER PAGE — EXACT MATCH UX & STYLING
   ============================================================ */

/* Outer Layout */
.sb-auth-page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    overflow-x: hidden;
}
.sb-auth-page-container {
    flex: 1;
    display: grid;
    grid-template-columns: 46% 54%;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Left Pane (Branding & Testimonial) */
.sb-auth-page-left {
    background: radial-gradient(circle at 0% 0%, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #ffffff;
}
.sb-left-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    padding: 40px 48px;
    box-sizing: border-box;
}

/* Background Glowing Shapes */
.sb-left-glow-circle-1 {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, rgba(13, 148, 136, 0) 70%);
    pointer-events: none;
    filter: blur(40px);
}
.sb-left-glow-circle-2 {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, rgba(13, 148, 136, 0) 70%);
    pointer-events: none;
    filter: blur(40px);
}
.sb-left-dots-grid {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 12px 12px;
    pointer-events: none;
}

/* Left Pane Header & Logo */
.sb-left-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}
.sb-left-logo-icon {
    width: 32px;
    height: 32px;
    background: #0d9488;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sb-left-logo-icon svg {
    stroke: #ffffff !important;
}
.sb-left-logo span {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -0.3px;
}

/* Left Pane Text */
.sb-left-headline {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin: 0 0 16px 0 !important;
    letter-spacing: -0.8px;
}
.sb-highlight-green {
    color: #10b981 !important; /* Emerald green */
}
.sb-left-subtext {
    font-size: 15px !important;
    color: #94a3b8 !important;
    line-height: 1.6 !important;
    margin: 0 0 32px 0 !important;
}

/* Left Pane Badges Row */
.sb-reg-left-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}
.sb-reg-badge-item {
    flex: 1;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}
.sb-badge-star, .sb-badge-users, .sb-badge-success {
    font-size: 20px;
    line-height: 1;
}
.sb-badge-text-wrap {
    display: flex;
    flex-direction: column;
}
.sb-badge-val {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}
.sb-badge-desc {
    font-size: 10px;
    color: #64748b;
    margin-top: 1px;
}

/* Left Pane Testimonial Box */
.sb-reg-testimonial-box {
    position: relative;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 24px;
    max-width: 85%;
    backdrop-filter: blur(10px);
}
.sb-testi-quote {
    color: #10b981;
    font-size: 38px;
    font-family: serif;
    position: absolute;
    top: 8px;
    left: 12px;
    line-height: 1;
}
.sb-testi-para {
    font-size: 13px !important;
    color: #cbd5e1 !important;
    line-height: 1.6 !important;
    margin: 0 0 8px 0 !important;
    padding-left: 12px;
    font-style: italic;
}
.sb-testi-by {
    display: block;
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    padding-left: 12px;
}

/* Boy Portrait Wrapper */
.sb-reg-boy-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 270px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.75;
}
.sb-reg-boy-img {
    width: 100%;
    display: block;
    object-fit: contain;
}

/* Left Pane Footer */
.sb-reg-left-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 40px;
}
.sb-footer-title {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 500;
}
.sb-footer-avatars {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sb-avatar-group {
    display: flex;
    align-items: center;
}
.sb-avatar-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #0f172a;
    object-fit: cover;
    margin-left: -8px;
}
.sb-avatar-img.img-1 { margin-left: 0; }
.sb-avatar-plus {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0d9488;
    color: #ffffff;
    font-size: 9px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0f172a;
    margin-left: -8px;
}
.sb-avatar-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
}


/* Right Pane (White Form Page) */
.sb-auth-page-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    padding: 40px 24px;
}
.sb-reg-card {
    background: #ffffff;
    width: 490px;
    max-width: 100%;
    border-radius: 20px;
    padding: 40px 48px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    box-sizing: border-box;
}

/* Step Circles Indicator */
.sb-reg-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    width: 100%;
}
.sb-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    position: relative;
    width: 100px;
}
.sb-step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    border: 1.5px solid #cbd5e1;
    transition: all 0.3s ease;
}
.sb-step-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-align: center;
    white-space: nowrap;
}
.sb-step-item.active .sb-step-icon {
    background: #0d9488;
    color: #ffffff;
    border-color: #0d9488;
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
}
.sb-step-item.active .sb-step-label {
    color: #0d9488;
}
.sb-step-item.completed .sb-step-icon {
    background: #0d9488;
    color: #ffffff;
    border-color: #0d9488;
}
.sb-step-item.completed .sb-step-label {
    color: #0d9488;
}
.sb-step-line {
    position: absolute;
    top: 16px;
    left: calc(50% - 70px);
    width: 140px;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
    transition: background 0.3s ease;
}
.sb-step-line.completed {
    background: #0d9488;
}

/* Card Header Text */
.sb-reg-card-header h2 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    text-align: center;
    margin: 0 0 6px 0 !important;
    letter-spacing: -0.5px;
}
.sb-reg-card-header p {
    font-size: 14px !important;
    color: #64748b !important;
    text-align: center;
    margin: 0 0 28px 0 !important;
}

/* Role Selector Grid */
.sb-reg-role-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.sb-reg-role-card {
    position: relative;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 14px 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.sb-reg-role-card:hover {
    border-color: #0d9488;
    background: #f0fdfa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(13, 148, 136, 0.08);
}
.sb-reg-role-card.active {
    border-color: #0d9488;
    background: #f0fdfa;
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.08);
}
.sb-role-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.sb-role-icon-circle.student-bg {
    background: #e6f4ea;
}
.sb-role-icon-circle.teacher-bg {
    background: #f3e8ff;
}
.sb-reg-role-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.sb-reg-role-sub {
    font-size: 11px;
    color: #64748b;
}

/* Role Badge Check */
.sb-reg-role-check-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    background: #0d9488;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Why Scholarb Section */
.sb-reg-why-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    margin-top: 24px;
    margin-bottom: 24px;
}
.sb-reg-why-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #475569 !important;
    margin: 0 0 12px 0 !important;
}
.sb-reg-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sb-reg-why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #475569;
}
.sb-why-icon-wrap {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e6f4ea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d9488;
    flex-shrink: 0;
}

/* Action Buttons & Submits */
.sb-reg-continue-btn {
    width: 100%;
    background: #0d9488;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
    transition: all 0.2s ease;
    height: auto;
}
.sb-reg-continue-btn:hover {
    background: #0f766e;
}
.sb-reg-continue-btn svg {
    transition: transform 0.2s ease;
}
.sb-reg-continue-btn:hover svg {
    transform: translateX(3px);
}

/* Step 2 Form Controls */
.sb-reg-field {
    margin-bottom: 14px;
}
.sb-reg-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}
.sb-reg-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13.5px;
    color: #0f172a;
    background: #ffffff;
    box-sizing: border-box;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}
.sb-reg-input:focus {
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
    outline: none;
}
.sb-reg-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230d9488' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.sb-reg-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Action Buttons Row */
.sb-reg-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.sb-reg-back-btn {
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 8px;
    padding: 11px 18px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    box-shadow: none;
    height: auto;
}
.sb-reg-back-btn:hover {
    background: #e2e8f0;
}
.sb-reg-submit-btn {
    flex: 1;
    background: #0d9488;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
    height: auto;
}
.sb-reg-submit-btn:hover {
    background: #0f766e;
}
.sb-reg-submit-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    box-shadow: none;
}

/* Dots */
.sb-reg-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
}
.sb-reg-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.3s ease;
}
.sb-reg-dot.active {
    width: 14px;
    border-radius: 3px;
    background: #0d9488;
}

/* Prompt Log In */
.sb-auth-prompt {
    font-size: 13px !important;
    text-align: center;
    margin: 20px 0 0 0 !important;
    color: #64748b !important;
}
.sb-auth-prompt a {
    color: #0d9488 !important;
    font-weight: 700;
    text-decoration: none;
}
.sb-auth-prompt a:hover {
    text-decoration: underline;
}

/* Transition Animations */
.sb-fade-exit {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
}
.sb-fade-enter {
    animation: sbFadeIn 0.25s ease forwards;
}
@keyframes sbFadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Responsiveness */
@media (max-width: 992px) {
    .sb-auth-page-container {
        grid-template-columns: 1fr;
    }
    .sb-auth-page-left {
        display: none; /* Hide left side details on mobile, focusing entirely on card */
    }
    .sb-auth-page-right {
        padding: 24px 16px;
    }
    .sb-reg-card {
        padding: 32px 24px;
    }
}

/* ============================================================
   TEACHER DASHBOARD — STYLES & LAYOUTS (.sb-dash-*)
   ============================================================ */

/* Main Wrapper */
.sb-dash-wrapper {
    display: flex;
    min-height: 100vh;
    background: #f8fafc;
    font-family: var(--sb-font-primary) !important;
}

/* ════ Sidebar Panel ════ */
.sb-dash-sidebar {
    width: 250px;
    background: #0f172a; /* Deep Slate 900 */
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border-right: 1px solid #1e293b;
    z-index: 100;
}
.sb-dash-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 30px 24px;
    border-bottom: 1px solid #1e293b;
}
.sb-dash-logo-icon {
    width: 32px;
    height: 32px;
    background: #0d9488;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sb-dash-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.3px;
}
.sb-dash-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 16px;
    flex: 1;
}
.sb-dash-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #94a3b8 !important;
    text-decoration: none !important;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}
.sb-dash-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff !important;
}
.sb-dash-nav-item.active {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}
.sb-dash-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ════ Main Content Area ════ */
.sb-dash-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.sb-dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}
.sb-dash-welcome-title {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 !important;
    letter-spacing: -0.5px;
}
.sb-dash-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Notifications Button */
.sb-dash-noti-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 6px;
    border-radius: 50%;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}
.sb-dash-noti-btn:hover {
    background: #f1f5f9;
}
.sb-dash-noti-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: #ef4444; /* red */
    border-radius: 50%;
    border: 1.5px solid #ffffff;
}

/* Profile Pill */
.sb-dash-profile-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px 14px 6px 8px;
    border-radius: 30px;
}
.sb-dash-avatar-container {
    position: relative;
    width: 32px;
    height: 32px;
}
.sb-dash-profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.sb-dash-status-indicator {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}
.sb-dash-status-indicator.online {
    background: #22c55e; /* Green */
}
.sb-dash-profile-text {
    display: flex;
    flex-direction: column;
}
.sb-dash-profile-name {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}
.sb-dash-profile-role {
    font-size: 10px;
    color: #22c55e;
    font-weight: 600;
}

/* Content Body */
.sb-dash-content-body {
    padding: 40px;
    flex: 1;
}

/* ════ Stats Metric Grid ════ */
.sb-dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.sb-dash-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}
.sb-dash-stat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #475569;
}
.sb-dash-stat-icon-wrap.currency { background: #ecfdf5; color: #059669; }
.sb-dash-stat-icon-wrap.students { background: #f5f3ff; color: #7c3aed; }
.sb-dash-stat-icon-wrap.hours { background: #eff6ff; color: #2563eb; }
.sb-dash-stat-icon-wrap svg {
    stroke: currentColor !important;
}

.sb-dash-stat-content {
    display: flex;
    flex-direction: column;
}
.sb-dash-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 2px;
}
.sb-dash-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

/* ════ Lower Splits Section ════ */
.sb-dash-split-row {
    display: grid;
    grid-template-columns: 2.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}
.sb-dash-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}
.sb-dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 16px;
}
.sb-dash-card-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 !important;
}
.sb-dash-card-subtitle {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

/* Upcoming Lessons Table */
.sb-dash-table-responsive {
    overflow-x: auto;
    width: 100%;
}
.sb-dash-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.sb-dash-table th {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
}
.sb-dash-table td {
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #334155;
    vertical-align: middle;
}
.sb-dash-table tr:last-child td {
    border-bottom: none;
}

/* Table cells */
.sb-dash-student-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sb-dash-student-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0d9488;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.sb-dash-student-name {
    font-weight: 700;
    color: #0f172a;
}
.sb-dash-subject-cell {
    font-weight: 700;
    color: #0f172a;
}
.sb-dash-table-subcat {
    display: block;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}
.sb-time-val {
    font-weight: 600;
    color: #334155;
}

/* Action Buttons */
.sb-dash-actions-cell {
    display: flex;
    gap: 8px;
}
.sb-dash-btn-join {
    background: #0d9488;
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.2s ease;
    white-space: nowrap;
}
.sb-dash-btn-join:hover {
    background: #0f766e;
}
.sb-dash-btn-join.disabled {
    background: #e2e8f0;
    color: #94a3b8 !important;
    cursor: not-allowed;
}
.sb-dash-btn-resched {
    background: #ffffff;
    color: #475569 !important;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
    box-shadow: none;
    height: auto;
}
.sb-dash-btn-resched:hover {
    background: #f8fafc;
}

/* Booking Requests Card */
.sb-dash-requests-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sb-dash-request-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sb-dash-req-meta {
    display: flex;
    flex-direction: column;
}
.sb-dash-req-name {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}
.sb-dash-req-subject {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    margin-top: 1px;
}
.sb-dash-req-time {
    font-size: 11.5px;
    color: #94a3b8;
    margin-top: 4px;
    font-weight: 500;
}
.sb-dash-btn-approve {
    width: 100%;
    background: #ffffff;
    color: #0d9488;
    border: 1.5px solid #0d9488;
    border-radius: 8px;
    padding: 8px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: none;
    height: auto;
}
.sb-dash-btn-approve:hover {
    background: #f0fdfa;
}

/* Empty states */
.sb-dash-empty-state {
    text-align: center;
    padding: 48px 24px;
}
.sb-dash-empty-icon {
    font-size: 40px;
    margin-bottom: 12px;
}
.sb-dash-empty-text {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}
.sb-dash-empty-btn {
    background: #0d9488;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: none;
}
.sb-dash-requests-empty {
    text-align: center;
    padding: 32px 12px;
    color: #94a3b8;
}
.sb-dash-empty-small-icon {
    font-size: 28px;
    margin-bottom: 8px;
}
.sb-dash-requests-empty p {
    font-size: 13px;
    margin: 0;
}

/* ════ MOBILE RESPONSIVENESS BREAKPOINTS ════ */
@media (max-width: 992px) {
    .sb-dash-wrapper {
        flex-direction: column;
    }
    .sb-dash-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #1e293b;
    }
    .sb-dash-logo-area {
        padding: 16px 20px;
    }
    .sb-dash-nav {
        flex-direction: row;
        overflow-x: auto;
        padding: 10px 16px;
        gap: 6px;
        -webkit-overflow-scrolling: touch;
    }
    .sb-dash-nav-item {
        padding: 8px 12px;
        font-size: 13px;
        white-space: nowrap;
    }
    .sb-dash-header {
        padding: 20px;
    }
    .sb-dash-content-body {
        padding: 20px;
    }
    .sb-dash-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .sb-dash-split-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media (max-width: 576px) {
    .sb-dash-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .sb-dash-header-right {
        width: 100%;
        justify-content: space-between;
    }
    .sb-dash-welcome-title {
        font-size: 22px !important;
    }
}

/* ============================================================
   TUTOR PROFILE — BOOKING MODAL & SUMMARY SIDEBAR STYLES
   ============================================================ */

/* Benefits list inside sidebar */
.sb-booking-benefits {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 24px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sb-booking-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}
.sb-benefit-icon {
    font-size: 16px;
    display: inline-block;
    line-height: 1;
}

/* Primary CTA button */
.sb-booking-primary-cta {
    width: 100%;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 15px 24px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25) !important;
    transition: all 0.2s ease !important;
    text-align: center;
    display: block;
    line-height: 1;
    height: auto !important;
}
.sb-booking-primary-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(13, 148, 136, 0.35) !important;
}
.sb-booking-primary-cta:active {
    transform: translateY(0);
}
.sb-booking-helper-text {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin: 10px 0 0 0 !important;
    font-weight: 500;
}

/* Modal Overlay Backdrop */
.sb-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6); /* Slate 900 overlay */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}
.sb-modal-overlay.active {
    opacity: 1;
}

/* Modal Container */
.sb-modal-container {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 40px;
}
.sb-modal-overlay.active .sb-modal-container {
    transform: scale(1);
}

/* Modal Close Button */
.sb-modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    color: #64748b;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}
.sb-modal-close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

/* Modal Content Texts */
.sb-modal-title {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 6px !important;
    letter-spacing: -0.5px;
    text-align: left;
}
.sb-modal-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 28px !important;
    font-weight: 500;
    text-align: left;
}

/* Modal Shortcode Container */
.sb-booking-shortcode-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
}

/* Custom Modal Scrollers */
.sb-modal-container::-webkit-scrollbar {
    width: 6px;
}
.sb-modal-container::-webkit-scrollbar-track {
    background: transparent;
}
.sb-modal-container::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 20px;
}

/* Responsive adjustments for Modal */
@media (max-width: 768px) {
    .sb-modal-container {
        padding: 24px;
        border-radius: 16px;
    }
    .sb-modal-close-btn {
        top: 16px;
        right: 16px;
    }
    .sb-modal-title {
        font-size: 20px !important;
        padding-right: 32px;
    }
    .sb-booking-shortcode-container {
        padding: 16px;
    }
}

/* ============================================================
   CUSTOM INTERACTIVE CALENDAR — DETAILED DESIGN SYSTEMS
   ============================================================ */

.sb-custom-calendar-wrapper {
    display: flex;
    flex-direction: column;
}

/* Calendar Day Buttons & Grid states */
.sb-calendar-day-btn.past {
    color: #cbd5e1 !important;
    text-decoration: line-through;
    cursor: not-allowed !important;
    background: transparent !important;
}
.sb-calendar-day-btn.past:hover {
    background: transparent !important;
    color: #cbd5e1 !important;
}

/* Unavailable / Booked Slots */
.sb-time-slot-btn.booked,
.sb-time-slot-btn:disabled {
    background: #f1f5f9 !important;
    color: #94a3b8 !important;
    text-decoration: line-through;
    cursor: not-allowed !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: none !important;
}
.sb-time-slot-btn.booked:hover {
    background: #f1f5f9 !important;
    color: #94a3b8 !important;
}

/* Loader ring for dynamic slot loading */
.sb-slots-loader-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}
.sb-loader-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #cbd5e1;
    border-top: 3px solid #0d9488;
    border-radius: 50%;
    animation: sb-spin 0.8s linear infinite;
}
@keyframes sb-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No slots available message */
.sb-slots-empty-notice {
    padding: 20px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    color: #64748b;
    text-align: center;
    font-size: 13.5px;
    font-weight: 500;
    margin: 10px 0;
}

/* Success Confirmation Panel Styling */
.sb-booking-success-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}
.sb-success-checkmark-circle {
    width: 64px;
    height: 64px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(220, 252, 231, 0.5);
    margin-bottom: 8px;
    border: 2px solid #bbf7d0;
}
.sb-success-details-card {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sb-success-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
}
.sb-success-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.sb-success-detail-label {
    color: #64748b;
    font-weight: 500;
}
.sb-success-detail-val {
    color: #0f172a;
    font-weight: 700;
}

