/* Consultation Specific Styles */
.consultation-booking-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.consultation-booking-form h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-family: 'Kaushan Script', cursive;
}

.consultation-availability {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid #007cba;
}

.consultation-types {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.consultation-type-card {
    flex: 1;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consultation-type-card.active {
    border-color: #007cba;
    background: #e7f3ff;
}

.consultation-type-card h4 {
    margin-bottom: 10px;
    color: #333;
}

.consultation-type-card .price {
    font-size: 1.2em;
    font-weight: bold;
    color: #007cba;
}

.consultation-calendar {
    margin: 20px 0;
}

.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    padding: 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
}

.calendar-day.available {
    background: #d4edda;
    border-color: #c3e6cb;
}

.calendar-day.unavailable {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: #007cba;
    color: white;
    border-color: #007cba;
}