/* Ensure the whole page does not scroll */
html, body {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden; /* Prevent scrolling */
    margin: 0;
    padding: 0;

}
body {
    background-color: #f9f9f9 !important;
}
/* Ensure the login page covers the full screen without overflow */
.auth-page {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f5f7;
    overflow: hidden; /* No unnecessary scrolling */
    margin: 0;
    padding: 0;
}

/* Two-Column Layout */
.auth-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center; /* Ensure everything stays centered */
    align-items: center;
    margin: 0 auto;
    overflow: hidden; /* Prevents horizontal scrolling */
}

/* Left Side - Branding */
.auth-left {
    background: white;
    color: #6f42c1; /* Purple */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*    padding: 40px;*/
    height: 100%;
    width: 50%;
    max-width: 50vw;
}

.auth-logo {
    font-size: 4rem;
    font-weight: 700;
}

.auth-description {
    font-size: 1.1rem;
    margin-top: 10px;
/*    max-width: 80%;*/
    color: #333;
}

/* Right Side - Login Card */
.auth-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    height: 100%;
    width: 50%;
    max-width: 50vw;
    overflow: hidden;
}

/* Form Container */
.auth-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    margin: 0 auto; /* Centers the card */
}

/* Fix any extra spacing */
.container-fluid, .row {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Purple Color for Heading */
.text-purple {
    color: #6f42c1 !important;
}

/* Form Elements */
.form-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.form-control {
    padding: .625rem;
    font-size: 0.9rem;
    border-radius: .3125rem;
}

/* Buttons */
/*.btn-primary {*/
/*    padding: 10px;
    font-size: 1rem;*/
    /*border-radius: 5px;
}*/
.collapsed {
    display: none;
}



.main-expanded {
    margin-left: 75px;
    margin-top: 10px;
    /* Adds some spacing when expanded */
    width: calc(100% - 80px); /* Ensures it doesn�t overflow */
}



.top-navbar {
    width: calc(100% - 235px); /* Default width with sidebar */
    position: fixed;
    left: 235px; /* Start from here */
    top: 0;
    height: 60px;
    background-color: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1030;
}

.top-navbar-expanded {
    width: calc(100% - 80px); /* Adjust width when sidebar is collapsed */
    left: 80px; /* Move left when sidebar collapses */
}




.btn-outline-primary {
    padding: 5px;
    font-size: 1rem;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Make auth pages feel like modals on mobile */
    .auth-page {
        height: auto;
        min-height: 100vh;
        align-items: flex-start;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .auth-container {
        flex-direction: column;
        height: auto;
    }

    .auth-left {
        width: 100%;
        padding: 20px;
        height: 50%;
        max-width: 100%;
    }

    .auth-right {
        width: 100%;
        padding: 20px;
        height: 50%;
        max-width: 100%;
    }

    /* Login / Register cards: add comfortable padding on mobile/tablet */
    .auth-card {
        max-width: 92%;
        padding: 20px 16px;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}
/* Override the top-navbar styles only for Consultant pages */
.consultant-page .top-navbar {
    width: 100%; /* Full width for Consultant navbar */
    position: fixed;
    left: 0; /* Remove the space on the left */
    top: 0;
    height: 60px;
    background-color: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1030;
}

/* Make sure when sidebar is collapsed, the navbar still spans full width */
.consultant-page .top-navbar-expanded {
    width: 100%; /* Full width when sidebar is collapsed */
    left: 0; /* Move to the left edge */
}

/* Styles for ticket pages */
.ticket-status-badge {
    font-size: 0.85rem;
    padding: 0.35rem 0.65rem;
}

.ticket-info-card {
    transition: all 0.3s ease;
}

    .ticket-info-card:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.consultant-list-item {
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

    .consultant-list-item:hover {
        border-left-color: var(--bs-primary);
        background-color: rgba(var(--bs-primary-rgb), 0.05);
    }

    .consultant-list-item.selected {
        border-left-color: var(--bs-success);
        background-color: rgba(var(--bs-success-rgb), 0.05);
    }

/* Additional badge colors for different statuses */
.badge.bg-info {
    background-color: #17a2b8 !important;
    color: white;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #212529;
}

.badge.bg-success {
    background-color: #28a745 !important;
    color: white;
}

.badge.bg-secondary {
    background-color: #0b2f6d !important;
    color: white;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
    color: white;
}

/* Ensure table responsiveness */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Ticket description area styling */
.ticket-description {
    white-space: pre-line;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Feather icon alignment fix */
.feather {
    vertical-align: text-bottom;
}

/* Button spacing in table */
.btn-group-sm > .btn, .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.76563rem;
    border-radius: 0.2rem;
}

.icon-sm{
    margin-bottom:.1rem;
}
.icon-xs {
    width: 0.8rem;
    height: 0.8rem;
}

body.app-shell-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-shell-main,
.app-shell-admin {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app-shell-row {
    flex: 1 0 auto;
}

.app-shell-content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.app-page-content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.app-page-body {
    flex: 1 0 auto;
    width: 100%;
}

.app-page-section,
.app-surface-page {
    padding-bottom: 1.5rem;
}

.app-card-surface,
.app-table-card,
.app-detail-surface {
    border-radius: 8px;
}

.app-filter-toolbar {
    row-gap: 0.75rem;
}

.app-filter-toolbar .dropdown-menu {
    border-radius: 8px;
    z-index: 1080;
}

.app-table-card .table-responsive,
.notifications-table-wrap .table-responsive {
    position: relative;
    overflow: visible;
}

.app-table-card .table-responsive table,
.notifications-table-wrap .table-responsive table {
    margin-bottom: 0;
}

.app-page-content .card-header .dropdown,
.app-page-content .card-header .btn-group,
.app-page-content .card-header .dropdown-menu {
    position: relative;
    z-index: 1080;
}

.app-empty-state,
.empty-state-panel {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
}

.app-empty-state .btn,
.empty-state-panel .btn {
    margin-top: 0.5rem;
}

.app-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.app-row-actions .dropdown-menu {
    min-width: 12rem;
}

.top-navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu.show,
.top-navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu.show {
    z-index: 1040 !important;
}

.modal.show .modal-dialog:not(.modal-dialog-centered) {
    margin-top: 4.75rem;
}

.app-table-card .card-header {
    position: relative;
    z-index: 100;
}

.app-table-card .card-body {
    position: relative;
    z-index: 1;
}

.app-table-card .app-filter-toolbar .dropdown,
.app-table-card .app-filter-toolbar .btn-group {
    position: relative;
    z-index: 110;
}

.app-table-card .app-filter-toolbar .dropdown-menu {
    position: absolute;
    z-index: 120 !important;
}

.app-table-card table tr[data-status] {
    opacity: 1 !important;
}

.app-table-card tbody tr {
    position: relative;
    z-index: 1;
}

.app-table-card tbody tr.app-dropdown-open,
.app-table-card tbody tr.app-dropdown-open td {
    position: relative;
    z-index: 90;
}

.app-table-card .app-row-actions {
    position: relative;
    z-index: 10;
}

.app-table-card tbody tr.app-dropdown-open .app-row-actions {
    z-index: 100;
}

.app-table-card .app-row-actions .dropdown {
    position: relative;
}

.app-table-card .app-row-actions .dropdown-menu {
    z-index: 20 !important;
    background: #ffffff;
    border: 1px solid #e6edf3;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
    padding: 0.35rem;
}

.app-table-card .app-row-actions .appointment-actions-dropdown .dropdown-menu {
    top: 100%;
    right: 0;
    left: auto;
    margin-top: 0.35rem;
    transform: none !important;
}

.app-table-card .app-row-actions .appointment-actions-dropdown .dropdown-menu.show {
    display: block;
}

.app-table-card .app-row-actions .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 6px;
    color: #1f2937;
    line-height: 1.35;
    min-height: 36px;
    white-space: nowrap;
}

.app-filter-toolbar .form-control-sm,
.app-filter-toolbar .btn-sm,
.app-filter-toolbar .dropdown-toggle {
    min-height: 34px;
}

.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    color: #5f6b76;
}

.dataTables_wrapper .dataTables_filter label,
.dataTables_wrapper .dataTables_length label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    border-radius: 6px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 6px !important;
    border: 1px solid #d9e2ea !important;
    color: #45606b !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: #0b2f6d !important;
    background: #f0f6fa !important;
    border-color: #14899a !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: #ffffff !important;
    background: #14899a !important;
    border-color: #14899a !important;
}

/* site.css or breadcrumb.css */

.page-header {
    padding: 10px 10px;
}

.page-title {
    font-size: 20px;
    font-weight: 470;
    margin: 7px 0;
    color: #333;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: transparent;
}

    .breadcrumb li {
        display: inline-block;
        font-size: 12px;
    }

        .breadcrumb li + li:before {
            padding: 0 8px;
            color: #6c757d;
            content: "/";
        }

        .breadcrumb li a {
            color: #007bff;
            text-decoration: none;
            transition: color 0.2s ease;
        }

            .breadcrumb li a:hover {
                color: #0056b3;
                text-decoration: underline;
            }

ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    background-color: #eee;
}

    ul.breadcrumb li {
        display: inline;
        font-size: 16px;
    }

        ul.breadcrumb li + li:before {
            padding: 8px !important;
            padding-right:0px !important;
            color: black !important;
            content: "/\00a0" !important;
        }

        ul.breadcrumb li a {
            color: #0275D8;
            text-decoration: none;
        }

            ul.breadcrumb li a:hover {
                color: #01447E;
                text-decoration: underline;
            }

/*            for logo*/
/* Logo Container Styles */
.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 4.3rem; /* Match your original main logo height */
    min-width: 3.5rem; /* Ensure container width for main logo */
}

/* Base Logo Image Styles */
.logo-image {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    object-fit: contain;
    object-position: left center;
}

/* Main Logo (SVG - expanded sidebar) */
.main-logo {
    opacity: 1;
    visibility: visible;
    height: 4.3rem; /* Your original height */
    width: 8.5rem; /* Your original width */
    max-width: 13.75rem; /* Your original max-width */
}

/* Short Logo (JPG - collapsed sidebar) */
.short-logo {
    opacity: 0;
    visibility: hidden;
    height: 2.3rem; /* Same height as main logo */
    width: 2.3rem; /* Square aspect for short logo */
    max-width: 3rem;
}

/* When sidebar is collapsed, switch logos */
.sidebar-collapsed .main-logo {
    opacity: 0;
    visibility: hidden;
}

.sidebar-collapsed .short-logo {
    opacity: 1;
    visibility: visible;
}

/* Logo wrapper styling */
.logo-mini-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Changed from center to match original */
}

    .logo-mini-wrapper a {
        display: flex;
        align-items: center;
        transition: opacity 0.3s ease;
        text-decoration: none;
    }

        .logo-mini-wrapper a:hover {
            opacity: 0.9;
        }

    /* Hover effects for logos */
    .logo-mini-wrapper:hover .logo-image {
        transform: translateY(-50%) scale(1.05);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    }

/* Sidebar header transition */
.sidebar-header {
    transition: all 0.3s ease;
}

/* Responsive logo adjustments - maintaining your original breakpoints */
@media (max-width: 1200px) {
    .logo-container {
        height: 40px;
    }

    .main-logo {
        height: 40px;
        max-width: 200px;
        width: auto; /* Let width adjust proportionally */
    }

    .short-logo {
        height: 40px;
        width: 40px;
        max-width: 40px;
    }
}

@media (max-width: 992px) {
    .logo-container {
        height: 38px;
    }

    .main-logo {
        height: 38px;
        max-width: 180px;
        width: auto;
    }

    .short-logo {
        height: 38px;
        width: 38px;
        max-width: 38px;
    }
}

@media (max-width: 768px) {
    .logo-container {
        height: 35px;
    }

    .main-logo {
        height: 35px;
        max-width: 160px;
        width: auto;
    }

    .short-logo {
        height: 35px;
        width: 35px;
        max-width: 35px;
    }

    /* Adjust spacing on mobile */
    .logo-mini-wrapper {
        margin-right: 1rem !important;
    }
}

@media (max-width: 576px) {
    .logo-container {
        height: 32px;
    }

    .main-logo {
        height: 32px;
        max-width: 140px;
        width: auto;
    }

    .short-logo {
        height: 32px;
        width: 32px;
        max-width: 32px;
    }
}

/* Error handling - if image fails to load */
.logo-image:not([src]),
.logo-image[src=""] {
    display: none;
}

/* Fallback: show text if image doesn't load */
.logo-mini-wrapper::after {
    content: attr(data-fallback);
    font-size: 1.25rem;
    font-weight: bold;
    color: purple;
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.logo-image:not([src]) + .logo-mini-wrapper::after,
.logo-image[src=""] + .logo-mini-wrapper::after {
    display: block;
}

/* Additional: Ensure container adjusts when sidebar is collapsed */
.sidebar-collapsed .logo-container {
    min-width: auto; /* Allow container to shrink for short logo */
}

/* ===== SIMPLE FOOTER STYLES - Applied to All Pages ===== */
.simple-footer {
    background-color: #000000;
    color: #ffffff;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

    .simple-footer .footer-top-bar {
        height: 3rem;
        background: #14899a;
    }

.simple-footer .footer-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-transform: none;
}

.simple-footer .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-footer .footer-list li {
    margin-bottom: 0.4rem;
}

.simple-footer .footer-list a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.simple-footer .footer-list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.simple-footer .footer-list .dropdown-toggle::after {
    font-size: 0.6rem;
    vertical-align: middle;
    margin-left: 0.3rem;
}

.simple-footer .dropdown-menu {
    background-color: #1a1a1a;
    border: 1px solid #333333;
    min-width: 140px;
}

.simple-footer .dropdown-item {
    color: #a0a0a0;
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
}

.simple-footer .dropdown-item:hover {
    background-color: #333333;
    color: #ffffff;
}

.simple-footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 0;
}

.simple-footer .footer-text {
    color: #a0a0a0;
    font-size: 0.8rem;
}

.simple-footer .social-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 1rem;
    margin-right: 0.75rem;
    transition: color 0.2s ease;
}

.simple-footer .social-link:hover {
    color: #ffffff;
}

/* Responsive simple footer */
@media (max-width: 767px) {
    .simple-footer .text-md-end {
        text-align: left !important;
        margin-top: 0.5rem;
    }
}
.request-time-picker {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.9fr);
    gap: 1rem;
    align-items: start;
}

.request-time-slots {
    min-height: 96px;
    padding: 0.75rem;
    border: 1px solid #e5e9f0;
    border-radius: 8px;
    background: #fff;
}

.request-time-slots-title {
    margin-bottom: 0.5rem;
    color: #60708a;
    font-size: 0.875rem;
    font-weight: 600;
}

.request-time-slot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.request-time-slot {
    border: 1px solid #14899a;
    border-radius: 8px;
    background: #fff;
    color: #12376a;
    padding: 0.45rem 0.35rem;
    font-weight: 600;
}

.request-time-slot.active,
.request-time-slot:hover {
    background: #14899a;
    color: #fff;
}

.request-invitation-modal .modal-body {
    padding: 1.5rem;
}

.request-invitation-modal .request-response-footer {
    display: block;
    padding: 1.25rem 1.5rem;
    background: #fff;
}

.request-invitation-modal .request-response-form {
    width: 100%;
}

.request-invitation-modal .request-response-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(320px, 1.4fr);
    gap: 1rem;
    align-items: start;
    width: 100%;
}

.request-invitation-modal .request-response-field {
    min-width: 0;
}

.request-invitation-modal .request-response-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1rem;
}

.request-invitation-modal #alreadyRespondedMessage {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .request-time-picker {
        grid-template-columns: 1fr;
    }

    .request-time-slot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .request-invitation-modal .modal-body,
    .request-invitation-modal .request-response-footer {
        padding: 1rem;
    }

    .request-invitation-modal .request-response-grid {
        grid-template-columns: 1fr;
    }

    .request-invitation-modal .request-response-actions {
        flex-direction: column-reverse;
    }

    .request-invitation-modal .request-response-actions .btn {
        width: 100%;
    }
}

/* Shared Calendly-style slot picker used by booking and reschedule flows */
.calendly-style-slot-picker {
    display: flex;
    gap: 2rem;
    min-height: 420px;
    text-align: left;
}

.calendly-style-slot-picker .slot-picker-left {
    width: 280px;
    flex-shrink: 0;
    border-right: 1px solid #eee;
    padding-right: 1.5rem;
}

.calendly-style-slot-picker .slot-picker-left .event-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0.5rem 0;
    color: #1a1a1a;
}

.calendly-style-slot-picker .slot-picker-left .event-duration,
.calendly-style-slot-picker .timezone-row {
    color: #6c757d;
    font-size: 0.9rem;
}

.calendly-style-slot-picker .slot-picker-left .selected-datetime {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #495057;
}

.calendly-style-slot-picker .slot-picker-right {
    flex: 1;
    min-width: 0;
}

.calendly-style-slot-picker .slot-picker-section-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.calendly-style-slot-picker .month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.calendly-style-slot-picker .month-nav .month-label {
    font-weight: 600;
    font-size: 1rem;
}

.calendly-style-slot-picker .month-nav button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #0d6efd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.calendly-style-slot-picker .month-nav button:hover {
    background: #e7f1ff;
    border-color: #0d6efd;
}

.calendly-style-slot-picker .month-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.calendly-style-slot-picker .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 1rem;
}

.calendly-style-slot-picker .calendar-weekday {
    font-size: 0.7rem;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
    padding: 0.25rem 0;
}

.calendly-style-slot-picker .calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 50%;
    cursor: default;
    background: transparent;
    border: none;
    color: #adb5bd;
}

.calendly-style-slot-picker .calendar-day.in-month {
    color: #1a1a1a;
}

.calendly-style-slot-picker .calendar-day.in-month:not(.available) {
    color: #9ca3af;
}

.calendly-style-slot-picker .calendar-day.available,
.calendly-style-slot-picker .calendar-day.selected {
    background: #e0f2fe;
    color: #0c4a6e;
    font-weight: 600;
    cursor: pointer;
}

.calendly-style-slot-picker .calendar-day.available:hover {
    background: #bae6fd;
}

.calendly-style-slot-picker .calendar-day.selected {
    flex-direction: column;
}

.calendly-style-slot-picker .calendar-day.selected::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0c4a6e;
    margin-top: 2px;
}

.calendly-style-slot-picker .timezone-row {
    margin-top: 1rem;
}

.calendly-style-slot-picker .time-slots-title {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.calendly-style-slot-picker .time-slots-title .green-dot,
.calendly-style-slot-picker .time-slot-btn .slot-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #198754;
    flex-shrink: 0;
}

.calendly-style-slot-picker .time-slots-list {
    max-height: 220px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calendly-style-slot-picker .time-slot-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: left;
}

.calendly-style-slot-picker .time-slot-btn:hover {
    background: #f8f9fa;
    border-color: #0d6efd;
}

.calendly-style-slot-picker .time-slot-btn.selected {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.calendly-style-slot-picker .time-slot-btn.selected .slot-dot {
    background: #fff;
}

.calendly-style-slot-picker .next-btn-wrap {
    margin-top: 1rem;
}

.calendly-style-slot-picker .next-btn-wrap .btn-next {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(45deg, #14899A 0%, #0B2F6D 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}

.calendly-style-slot-picker .next-btn-wrap .btn-next:hover {
    background: linear-gradient(45deg, #0B2F6D 0%, #14899A 100%);
}

@media (max-width: 768px) {
    .calendly-style-slot-picker {
        flex-direction: column;
        gap: 1rem;
        min-height: auto;
    }

    .calendly-style-slot-picker .slot-picker-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 1rem;
    }
}
