/* Therapist Search Styles */

/* Container Styles */
.therapist-search-container {
    padding: 2rem 0;
}

.page-header {
    margin-bottom: 2rem;
}

.page-header h2 {
    color: #1A2B3C;
    margin-bottom: 0.5rem;
}

/* Loading States */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.loading-container p {
    margin-top: 1rem;
    color: #6c757d;
}

/* Authorization Card */
.authorization-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #2E7BFF;
}

.authorization-card.urgency-critical {
    border-left-color: #dc3545;
    background: #fff5f5;
}

.authorization-card.urgency-high {
    border-left-color: #fd7e14;
    background: #fff9f5;
}

.authorization-card.urgency-medium {
    border-left-color: #ffc107;
    background: #fffdf5;
}

.authorization-card.urgency-expired {
    border-left-color: #6c757d;
    opacity: 0.7;
}

.authorization-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.authorization-type {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.authorization-body {
    margin: 1rem 0;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: #2E7BFF;
    margin-top: 0.25rem;
}

.expiration-warning {
    padding: 0.75rem;
    background: #fff3cd;
    border-radius: 8px;
}

.authorization-notes {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 1rem;
}

.authorization-footer .btn-block {
    width: 100%;
}

/* Authorization Grid */
.authorization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* ========================================
   HORIZONTAL ITALKI-STYLE THERAPIST CARD
   ======================================== */

/* Main Card Container */
.therapist-card-horizontal {
    background: #FFFFFF;
    border: 1px solid rgba(230, 233, 240, 0.5);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.therapist-card-horizontal:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(14, 81, 199, 0.12);
    border-color: rgba(14, 81, 199, 0.3);
}

/* ===== PROFILE SECTION (Top 65% - Horizontal Layout) ===== */
.profile-section {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem;
    position: relative;
    flex: 1;
    align-items: flex-start;
}

/* Large Photo Circle - LEFT SIDE (150px) */
.therapist-photo-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FFFFFF;
    box-shadow: 0 4px 12px rgba(7, 28, 42, 0.15);
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(135deg, #0E51C7 0%, #7F4CB9 100%);
}

.therapist-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.therapist-photo-circle .photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0E51C7 0%, #7F4CB9 100%);
}

.therapist-photo-circle .photo-placeholder i {
    font-size: 4.5rem;
    color: #FFFFFF;
}

/* Top Rated Badge (on photo) */
.top-rated-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #F6C344 0%, #f4b222 100%);
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(246, 195, 68, 0.5);
}

.top-rated-badge i {
    color: #071C2A;
    font-size: 1rem;
}

/* Info Section - FLOWS TO RIGHT OF PHOTO */
.therapist-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-right: 8rem; /* Space for match badge */
}

/* Therapist Name (Large, Bold) */
.therapist-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #071C2A;
    margin: 0;
    line-height: 1.2;
    font-family: 'Inter', 'Nunito', 'Open Sans', sans-serif;
}

.therapist-name .cert-suffix {
    font-weight: 500;
    color: #64748B;
    font-size: 1.5rem;
}

/* Credential Pill */
.credential-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(14, 81, 199, 0.1);
    color: #0E51C7;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    align-self: flex-start;
}

/* Quick Stats Row */
.quick-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #64748B;
}

.quick-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.quick-stats .stat-item i {
    color: #0E51C7;
    font-size: 1.1rem;
}

.quick-stats .stat-separator {
    color: #CBD5E1;
    font-weight: 300;
}

/* Specialties Text (Inline) */
.therapist-specialties-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

.therapist-specialties-text strong {
    color: #071C2A;
    font-weight: 600;
}

.therapist-specialties-text .more-text {
    color: #64748B;
    font-style: italic;
}

/* Available Now Inline Badge */
.available-now-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(40, 155, 135, 0.1);
    color: #289B87;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    align-self: flex-start;
}

.available-now-inline i {
    font-size: 1.1rem;
}

/* Match Badge - TOP RIGHT CORNER (Floating) */
.match-badge-corner {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #F6C344 0%, #f4b222 100%);
    color: #071C2A;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(246, 195, 68, 0.35);
    z-index: 10;
}

/* ===== STATISTICS BAR SECTION (Bottom 35% - 5 Columns) ===== */
.stats-bar-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(230, 233, 240, 0.7);
    background: rgba(248, 250, 252, 0.5);
}

/* Individual Stat Box */
.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0.75rem;
    border-right: 1px solid rgba(230, 233, 240, 0.7);
    text-align: center;
    transition: background 0.2s ease;
}

.stat-box:last-child {
    border-right: none;
}

.stat-box:hover {
    background: rgba(14, 81, 199, 0.03);
}

/* Stat Value (Large Number/Text) */
.stat-value {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #071C2A;
    margin-bottom: 0.25rem;
}

.stat-value i {
    color: #F6C344;
    font-size: 1.25rem;
}

/* Stat Label (Main Label) */
.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 0.125rem;
}

/* Stat Sublabel (Secondary Text) */
.stat-sublabel {
    font-size: 0.75rem;
    color: #94A3B8;
    font-weight: 400;
}

/* Actions Column (5th Column - Single Button) */
.stat-box-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.25rem;
}

.btn-secondary-action {
    width: 100%;
    max-width: 200px;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #FFFFFF;
    color: #0E51C7;
    border: 1.5px solid #E5E7EB;
}

.btn-secondary-action:hover {
    background: #F8FAFC;
    border-color: #0E51C7;
    transform: translateY(-1px);
}

/* Therapist Results Grid */
.therapist-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

/* Search Filters */
.search-filters-panel {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.filters-header h5 {
    margin: 0;
    color: #1A2B3C;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1A2B3C;
}

.form-range {
    width: 100%;
}

.range-value {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    color: #2E7BFF;
    font-weight: 500;
}

.filter-actions {
    display: flex;
    gap: 0.5rem;
}

.filter-actions .btn {
    flex: 1;
}

.active-filters {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: #e7f3ff;
    color: #2E7BFF;
    border-radius: 20px;
    font-size: 0.875rem;
}

.remove-filter {
    background: none;
    border: none;
    color: #2E7BFF;
    font-size: 1.25rem;
    line-height: 1;
    padding: 0;
    margin-left: 0.25rem;
    cursor: pointer;
}

.remove-filter:hover {
    color: #1A5BBF;
}

/* No Results / Empty States */
.no-results,
.search-prompt {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.no-results i,
.search-prompt i {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.no-results h4,
.search-prompt h4 {
    color: #1A2B3C;
    margin-bottom: 1rem;
}

/* Therapist Profile Page */
.therapist-profile-container {
    padding: 2rem 0;
}

.profile-header {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Profile Content Section - Card styling for photo and stats below HeroSection */
.profile-content-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-top {
    margin-bottom: 1.5rem;
}

.profile-header-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* Therapist Profile Header - Unique class to avoid HeroSection conflicts */
.therapist-profile-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.therapist-profile-header .profile-header-info {
    flex: 1;
}

.therapist-profile-header .profile-header-info h1 {
    margin: 0 0 1rem 0;
    color: #1A2B3C;
    font-size: 2rem;
    font-weight: 700;
}

.therapist-photo-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #2E7BFF;
    flex-shrink: 0;
}

.therapist-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2E7BFF 0%, #1FA2A2 100%);
}

.photo-placeholder-large i {
    font-size: 5rem;
    color: white;
}

.profile-header-info {
    flex: 1;
}

.profile-header-info h1 {
    margin: 0 0 1rem 0;
    color: #1A2B3C;
}

.therapist-credentials {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.credential-badge {
    padding: 0.5rem 1rem;
    background: #2E7BFF;
    color: white;
    border-radius: 20px;
    font-weight: 500;
}

.profile-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
}

.stat-item i {
    font-size: 1.25rem;
}

.stat-item strong {
    color: #1A2B3C;
}

.accepting-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #d4edda;
    color: #155724;
    border-radius: 20px;
    font-weight: 500;
}

.profile-metadata {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.profile-metadata small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.interests-text {
    line-height: 1.8;
    color: #495057;
    font-size: 1rem;
}

.specialties-text {
    line-height: 1.8;
    color: #495057;
    font-size: 1rem;
}

.education-text {
    line-height: 1.8;
    color: #495057;
    font-size: 1rem;
}

.profile-body {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-tabs {
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: #2E7BFF;
}

.nav-tabs .nav-link.active {
    color: #2E7BFF;
    border-bottom: 3px solid #2E7BFF;
    background: none;
}

.tab-pane-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    margin-bottom: 2rem;
}

.section h3 {
    color: #1A2B3C;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.bio-text {
    line-height: 1.8;
    color: #495057;
}

.specialty-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.specialty-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #e7f3ff;
    color: #2E7BFF;
    border-radius: 25px;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat-card i {
    font-size: 2.5rem;
    color: #2E7BFF;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 600;
    color: #1A2B3C;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #6c757d;
    font-size: 0.875rem;
}

.certifications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.certification-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2E7BFF;
}

.cert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cert-header h5 {
    margin: 0;
    color: #1A2B3C;
}

.cert-number,
.cert-dates {
    margin: 0;
    color: #6c757d;
    font-size: 0.875rem;
}

.education-list {
    list-style: none;
    padding: 0;
}

.education-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.education-list li:last-child {
    border-bottom: none;
}

.education-list i {
    color: #2E7BFF;
    font-size: 1.25rem;
}

.courses-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.course-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.reviews-summary {
    margin-bottom: 2rem;
}

.rating-overview {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.rating-large {
    font-size: 4rem;
    font-weight: 700;
    color: #2E7BFF;
}

.stars-large {
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-rating i {
    font-size: 1.1rem;
}

.review-text {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.availability-calendar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.availability-day {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.day-name {
    width: 120px;
    font-weight: 600;
    color: #1A2B3C;
}

.day-slots {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.time-slot {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.875rem;
}

.time-slot i {
    color: #2E7BFF;
}

.profile-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.profile-actions .btn {
    min-width: 200px;
}

/* Modal Customization */
.modal-backdrop.show {
    opacity: 0.5;
}

.therapist-summary {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 1rem;
}

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.summary-item:last-child {
    border-bottom: none;
}

/* Badge Colors */
.badge-primary {
    background-color: #2E7BFF;
}

.badge-success {
    background-color: #28a745;
}

.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge-danger {
    background-color: #dc3545;
}

.badge-info {
    background-color: #17a2b8;
}

.badge-secondary {
    background-color: #6c757d;
}

.badge-dark {
    background-color: #343a40;
}

/* ========================================
   RESPONSIVE DESIGN - HORIZONTAL CARD
   ======================================== */

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    /* Stack profile section vertically on mobile */
    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.25rem;
    }

    .therapist-photo-circle {
        width: 120px;
        height: 120px;
    }

    .therapist-info-section {
        padding-right: 0;
        align-items: center;
    }

    .therapist-name {
        font-size: 1.5rem;
    }

    .therapist-name .cert-suffix {
        font-size: 1.25rem;
    }

    /* Match badge below photo on mobile */
    .match-badge-corner {
        position: static;
        margin-top: 0.75rem;
    }

    /* Stats bar: 2 columns (2x3 grid) */
    .stats-bar-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(230, 233, 240, 0.7);
        padding: 1rem 0.5rem;
    }

    .stat-box:nth-last-child(-n+2) {
        border-bottom: none;
    }

    /* Actions take full width */
    .stat-box-actions {
        grid-column: 1 / -1;
    }

    .btn-secondary-action {
        font-size: 0.8125rem;
        padding: 0.5rem 0.75rem;
        max-width: 100%;
    }
}

/* Tablet and Mobile Landscape (640px - 768px) */
@media (max-width: 768px) {
    .authorization-grid {
        grid-template-columns: 1fr;
    }

    .therapist-results-grid {
        grid-template-columns: 1fr;
    }

    /* Adjust profile section for tablets */
    .profile-section {
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .therapist-photo-circle {
        width: 130px;
        height: 130px;
    }

    .therapist-info-section {
        padding-right: 7rem;
    }

    .therapist-name {
        font-size: 1.625rem;
    }

    /* Stats bar: 3 columns on tablet */
    .stats-bar-section {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-box-actions {
        grid-column: 1 / -1;
    }

    .profile-header-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-stats {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .filter-actions {
        flex-direction: column;
    }

    .profile-actions {
        flex-direction: column;
    }

    .profile-actions .btn {
        width: 100%;
    }
}

/* Desktop (1024px and below) */
@media (max-width: 1024px) {
    .therapist-results-grid {
        grid-template-columns: 1fr;
    }
}

/* Large Screens (Above 1024px) - Full 5 Column Layout */
@media (min-width: 1025px) {
    .therapist-results-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   AVAILABILITY SCHEDULE ON CARDS
   ======================================== */

.availability-schedule {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.availability-schedule strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1A2B3C;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.availability-schedule strong i {
    color: #2E7BFF;
}

.availability-days {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.day-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
}

.day-item.has-availability {
    background: #e7f3ff;
    border-color: #2E7BFF;
}

.day-item.no-availability {
    opacity: 0.5;
}

.day-label {
    font-weight: 600;
    font-size: 0.75rem;
    color: #1A2B3C;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.day-times {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.day-times .time-slot {
    font-size: 0.6875rem;
    color: #2E7BFF;
    font-weight: 500;
    white-space: nowrap;
    background: white;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    border: 1px solid #2E7BFF;
}

.day-times .more-times {
    font-size: 0.625rem;
    color: #6c757d;
    font-style: italic;
}

.day-unavailable {
    font-size: 0.875rem;
    color: #adb5bd;
}
