/* Modern Mobile-First Booking Styles */
p, .entry-content p {
    margin-bottom: 10px;
}
.cliniccards-booking-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

/* Progress Indicator */
.cliniccards-progress-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px 0;
    position: relative;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cliniccards-progress-indicator::-webkit-scrollbar {
    display: none;
}

.cliniccards-progress-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.cliniccards-progress-indicator .step {
    text-align: center;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    z-index: 2;
    min-width: 80px;
    flex-shrink: 0;
}

.cliniccards-progress-indicator .step span {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    margin: 0 auto 8px auto;
    color: #999;
    border: 3px solid #e0e0e0;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cliniccards-progress-indicator .step.active span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: #667eea;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cliniccards-progress-indicator .step.active {
    color: #667eea;
    font-weight: 600;
}

/* Form Steps */
.form-step {
    display: none;
    padding: 30px 0;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    margin: 0 0 25px 0;
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
    font-size: 14px;
}

.form-group label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e6ed;
    border-radius: 12px;
    box-sizing: border-box;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Loading States */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 18px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.loading-subtext {
    font-size: 14px;
    color: #718096;
    margin-bottom: 15px;
}

.loading-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f7fafc;
    border-radius: 20px;
    font-size: 13px;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.loading-timer::before {
    content: '⏱️';
    font-size: 16px;
}

/* Skeleton Loading */
.skeleton-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
    border-radius: 12px;
    height: 80px;
    margin-bottom: 15px;
}

@keyframes loading-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Buttons */
.cliniccards-button {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    color: #495057;
    padding: 14px 28px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    margin: 8px 4px;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 50px;
    position: relative;
    overflow: hidden;
}

.cliniccards-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cliniccards-button-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.cliniccards-button-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.cliniccards-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cliniccards-button.loading {
    color: transparent;
    pointer-events: none;
}

.cliniccards-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.form-navigation .cliniccards-button {
    flex: 1;
    max-width: 200px;
}

/* Category Bubbles */
#cc-categories-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.category-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
    min-height: 80px;
    position: relative;
    overflow: hidden;
	color: #000;
}

.category-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-bubble:hover::before {
    left: 100%;
}

.category-bubble:hover {
    border-color: #dcab2b;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.category-bubble.selected {
    background: linear-gradient(135deg, #9f7114 0%, #dcab2b 100%);
    color: white;
    border-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Cards */
#cc-doctors-list,
#cc-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.doctor-card,
.service-card {
    padding: 25px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.doctor-card::before,
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.5s ease;
}

.doctor-card:hover::before,
.service-card:hover::before {
    left: 100%;
}

.doctor-card:hover,
.service-card:hover {
    border-color: #667eea;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.doctor-card.selected,
.service-card.selected {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border-color: #667eea;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.doctor-card h4,
.service-card h4 {
    margin: 0 0 12px 0;
    color: #2d3748;
    font-size: 15px;
    font-weight: 600;
}

.doctor-info {
    font-size: 14px;
    color: #718096;
    margin-top: 8px;
}

.service-price {
    color: #667eea;
    font-weight: 700;
    font-size: 12px;
}

/* Calendar */
.calendar-container {
    margin: 25px 0;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.calendar-nav {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

#current-month-year {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f8fafc;
}

.calendar-day-header {
    text-align: center;
    font-weight: 700;
    color: white;
    background: #4a5568;
    padding: 15px 5px;
    font-size: 14px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    min-height: 50px;
    position: relative;
}

.calendar-day:hover:not(.unavailable):not(.other-month) {
    background: #e8f2ff;
    color: #667eea;
    transform: scale(1.1);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.calendar-day.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.1);
    z-index: 2;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.calendar-day.unavailable {
    background: #f7fafc;
    color: #cbd5e0;
    cursor: not-allowed;
    position: relative;
}

.calendar-day.unavailable::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #cbd5e0;
    transform: rotate(-45deg);
}

.calendar-day.other-month {
    color: #cbd5e0;
    background: #f7fafc;
}

.calendar-day.today {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    font-weight: 700;
}

/* Time Slots */
.time-slots-container {
    margin-top: 30px;
}

.time-slots-container h4 {
    margin: 0 0 20px 0;
    color: #2d3748;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
}

#cc-time-slots-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.time-slot {
    padding: 16px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.time-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.3s ease;
}

.time-slot:hover:not(.booked)::before {
    left: 100%;
}

.time-slot:hover:not(.booked) {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.time-slot.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.time-slot.booked {
    background: #f7fafc;
    color: #a0aec0;
    cursor: not-allowed;
    border-color: #e2e8f0;
    position: relative;
}

.time-slot.booked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #a0aec0;
    transform: rotate(-15deg);
}

/* Messages */
#cc-booking-message {
    padding: 20px;
    margin: 20px 0;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

#cc-booking-message.success {
    background: linear-gradient(135deg, #c6f6d5 0%, #9ae6b4 100%);
    border: 2px solid #48bb78;
    color: #22543d;
}

#cc-booking-message.error {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    border: 2px solid #e53e3e;
    color: #742a2a;
}

/* Error Messages */
.error-message {
    color: #e53e3e;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .cliniccards-booking-container {
        margin: 10px;
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .cliniccards-progress-indicator {
        padding: 15px 0;
        margin-bottom: 20px;
    }
    
    .cliniccards-progress-indicator .step {
        font-size: 11px;
        min-width: 60px;
    }
    
    .cliniccards-progress-indicator .step span {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 14px;
    }
    
    .form-step h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    #cc-categories-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .category-bubble {
        min-height: 60px;
        padding: 15px;
    }
    
    #cc-doctors-list,
    #cc-services-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .calendar-grid {
        gap: 1px;
    }
    
    .calendar-day {
        min-height: 45px;
        font-size: 14px;
    }
    
    .calendar-day-header {
        padding: 12px 5px;
        font-size: 12px;
    }
    
    #cc-time-slots-container {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .time-slot {
        padding: 12px 8px;
        font-size: 14px;
        min-height: 45px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-navigation .cliniccards-button {
        max-width: none;
        width: 100%;
    }
    
    .cliniccards-button {
        padding: 12px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cliniccards-booking-container {
        margin: 5px;
        padding: 15px 10px;
    }
    
    .cliniccards-progress-indicator .step {
        font-size: 10px;
        min-width: 50px;
    }
    
    .cliniccards-progress-indicator .step span {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 12px;
    }
    
    .calendar-day {
        min-height: 40px;
        font-size: 13px;
    }
    
    #cc-time-slots-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Loading States for Specific Containers */
#cc-categories-list.loading,
#cc-services-list.loading,
#cc-doctors-list.loading,
#cc-time-slots-container.loading {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.cliniccards-button:focus,
.category-bubble:focus,
.doctor-card:focus,
.service-card:focus,
.time-slot:focus,
.calendar-day:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cliniccards-booking-container {
        border: 2px solid #000;
    }
    
    .cliniccards-button {
        border: 2px solid #000;
    }
    
    .category-bubble,
    .doctor-card,
    .service-card,
    .time-slot {
        border: 2px solid #000;
    }
}


                
                .cliniccards-booking-container {
                    max-width: 1600px;
                    margin: 20px auto;
                    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
                    background: white;
                    border-radius: 12px;
                    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
                    overflow: hidden;
                }
                
                .cliniccards-progress-indicator {
    display: flex
;
    background: linear-gradient(135deg, #dcab2b 0%, #9f7114 100%);
    padding: 20px;
    justify-content: space-between;
}
                
                .cliniccards-progress-indicator .step {
                    flex: 1;
                    text-align: center;
                    color: rgba(255,255,255,0.6);
                    font-size: 12px;
                    position: relative;
                }
                
                .cliniccards-progress-indicator .step.active {
                    color: white;
                    font-weight: 600;
                }
                
                .cliniccards-progress-indicator .step span {
                    display: block;
                    width: 30px;
                    height: 30px;
                    border-radius: 50%;
                    background: rgba(255,255,255,0.2);
                    margin: 0 auto 8px;
                    line-height: 30px;
                    font-weight: bold;
                }
                
                .cliniccards-progress-indicator .step.active span {
                    background: white;
                    color: #667eea;
                }
                
                .form-step {
                    padding: 30px;
                    display: none;
                }
                
                .form-step.active {
                    display: block;
                }
                
                .form-step h3 {
                    margin: 0 0 25px 0;
                    color: #333;
                    font-size: 24px;
                    font-weight: 600;
                }
                
                .form-group {
                    margin-bottom: 20px;
                }
                
                .form-group label {
                    display: block;
                    margin-bottom: 8px;
                    font-weight: 500;
                    color: #555;
                }
                
                .form-group input,
                .form-group select,
                .form-group textarea {
                    width: 100%;
                    padding: 12px 16px;
                    border: 2px solid #e0e0e0;
                    border-radius: 8px;
                    font-size: 16px;
                    transition: border-color 0.2s ease;
                    box-sizing: border-box;
                }
                
                .form-group input:focus,
                .form-group select:focus,
                .form-group textarea:focus {
                    outline: none;
                    border-color: #dcab2b;
                }
                
                .required {
                    color: #e74c3c;
                }
                
                .calendar-grid {
                    display: grid;
                    grid-template-columns: repeat(7, 1fr);
                    gap: 2px;
                    background: #f0f0f0;
                    padding: 2px;
                    border-radius: 8px;
                    margin-bottom: 20px;
                }
                
                .calendar-day-header {
                    text-align: center;
                    font-weight: bold;
                    color: white;
                    background: #dcab2b;
                    padding: 12px 5px;
                    font-size: 14px;
                }
                
                .calendar-day {
                    aspect-ratio: 1;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: white;
                    cursor: pointer;
                    transition: all 0.2s ease;
                    border: 2px solid transparent;
                    font-weight: 500;
                    min-height: 45px;
                }
                
                .calendar-day:hover:not(.unavailable):not(.other-month) {
                    background: #e3f2fd;
                    border-color: #dcab2b;
                    transform: scale(1.05);
                }
                
                .calendar-day.selected {
                    background: #dcab2b;
                    color: white;
                    border-color: #dcab2b;
                    font-weight: bold;
                }
                
                .calendar-day.unavailable {
                    background: #f5f5f5;
                    color: #ccc;
                    cursor: not-allowed;
                }
                
                .calendar-day.other-month {
                    color: #bbb;
                    background: #fafafa;
                    cursor: default;
                }
                
                .calendar-day.today {
                    background: var#9f7114;
                    color: white;
                    font-weight: bold;
                }
                
                .cliniccards-button {
                    background: #dcab2b;
                    color: white;
                    border: none;
                    padding: 12px 24px;
                    border-radius: 8px;
                    font-weight: 600;
                    cursor: pointer;
                    transition: all 0.2s ease;
                    margin: 10px 5px;
                    font-size: 16px;
                }
                
                .cliniccards-button:hover {
                    background: #005a87;
                    transform: translateY(-1px);
                }
                
                .cliniccards-button:disabled {
                    background: #ccc;
                    cursor: not-allowed;
                    transform: none;
                }
                
                .cliniccards-button-primary {
                    background: var#9f7114;
                    font-size: 18px;
                    padding: 15px 30px;
                }
                
                .cliniccards-button-primary:hover {
                    background: #218838;
                }
                
                .doctor-card, .service-card {
                    background: white;
                    border: 2px solid #e0e0e0;
                    border-radius: 12px;
                    padding: 10px;
                    margin: 10px 0;
                    cursor: pointer;
                    transition: all 0.3s ease;
                }
                
                .doctor-card:hover, .service-card:hover {
                    border-color: #dcab2b;
                    transform: translateY(-2px);
                    box-shadow: 0 8px 25px rgba(0,115,170,0.15);
                }
                
.doctor-card.selected, .service-card.selected {
    border-color: #ffffff;
    background: linear-gradient(135deg, #dcab2b 0%, #9f7114 100%);
    color: #fff;
}
.doctor-card h4.selected, .service-card h4.selected {
    margin: 0 0 12px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
                
                .time-slot {
                    padding: 15px 10px;
                    border: 2px solid #e0e0e0;
                    border-radius: 8px;
                    background: white;
                    cursor: pointer;
                    transition: all 0.2s ease;
                    text-align: center;
                    font-weight: 500;
                    min-height: 50px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
                
                .time-slot:hover:not(.booked) {
                    border-color: #dcab2b;
                    background: #f8f9fa;
                    transform: translateY(-1px);
                }
                
                .time-slot.selected {
                    background: #dcab2b;
                    color: white;
                    border-color: #dcab2b;
                }
                
                .time-slot.booked {
                    background: #f5f5f5;
                    color: #999;
                    cursor: not-allowed;
                    border-color: #ddd;
                    text-decoration: line-through;
                }
                
                #cc-time-slots-container {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
                    gap: 12px;
                    margin-top: 15px;
                }
                
                .error-message {
                    color: #e74c3c;
                    font-size: 14px;
                    margin-top: 5px;
                    font-weight: 500;
                }
                
                .calendar-nav {
                    background: #dcab2b;
                    color: white;
                    border: none;
                    padding: 10px 15px;
                    border-radius: 6px;
                    cursor: pointer;
                    font-weight: bold;
                    transition: background-color 0.2s ease;
                }
                
                .calendar-nav:hover {
                    background: #005a87;
                }
                
                .calendar-header {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 20px;
                    padding: 15px;
                    background: #f8f9fa;
                    border-radius: 8px;
                }
                
                #current-month-year {
                    margin: 0;
                    color: #333;
                    font-size: 20px;
                    font-weight: 600;
                }
                
                .spinner {
                    border: 3px solid #f3f3f3;
                    border-top: 3px solid #dcab2b;
                    border-radius: 50%;
                    width: 35px;
                    height: 35px;
                    animation: spin 1s linear infinite;
                    margin: 0 auto 15px;
                }
                
                @keyframes spin {
                    0% { transform: rotate(0deg); }
                    100% { transform: rotate(360deg); }
                }
                
                /* Mobile responsiveness */
                @media (max-width: 768px) {
                    .cliniccards-booking-container {
                        margin: 10px;
                        border-radius: 8px;
                    }
                    
                    .form-step {
                        padding: 20px;
                    }
                    
                    .calendar-grid {
                        gap: 1px;
                    }
                    
                    .calendar-day {
                        min-height: 35px;
                        font-size: 14px;
                    }
                    
                    #cc-time-slots-container {
                        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
                        gap: 8px;
                    }
                    
                    .time-slot {
                        padding: 12px 8px;
                        font-size: 14px;
                        min-height: 40px;
                    }
                }
				.calendar-container-both {
					display: flex;
				}


.time-slots-container, .calendar-container {
    width: 100%;
    margin: 20px;
}
.time-slot.selected, .calendar-day.selected {
    background: #64c8e0;
    color: white;
    border-color: #64c8e0;
}
.price-highlight {
    background: #64c8e0;
}
.ast-menu-toggle:focus {
    outline: none;
}
.ast-menu-toggle {
    border-style: none;
}