/* css/booking_page.css */

#booking-app-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.management-section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.management-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

/* 세션 선택 */
.session-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.session-option-card {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.session-option-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.session-option-card.selected {
    border-color: #007bff;
    background-color: #f0f8ff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
    transform: translateY(-5px);
}

.session-option-card h3 {
    margin-top: 0;
    color: #0056b3;
}

.session-option-card .price {
    font-size: 1.2em;
    font-weight: bold;
    color: #28a745;
    margin-top: 15px;
}

/* 캘린더 */
#calendar-container {
    padding: 10px;
}

/* 예약 폼 */
#booking-form-container {
    margin-top: 30px;
}

#booking-form .form-group {
    margin-bottom: 15px;
}

#booking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#booking-form input[type="text"],
#booking-form input[type="tel"],
#booking-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#booking-form .form-actions {
    text-align: center;
    margin-top: 20px;
}

.cta-button {
    padding: 12px 30px;
    font-size: 1em;
}

/* 가장 빠른 예약 찾기 */
.fast-booking-container {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cta-button.secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.cta-button.secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.status-message {
    margin-top: 15px;
    font-weight: bold;
    color: #007bff;
    min-height: 1.2em;
}