/* Booking page styles */
.booking-hero {
    background: linear-gradient(135deg, #334155, var(--dark-bg));
    border-radius: 15px;
}

/* Confirmation page styles */
.confirmation-hero {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 15px;
}

/* Booking page styles */
.booking-hero {
    background: linear-gradient(90deg, #334155, #0f1724);
    color: white;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.booking-hero h1 {
    margin-bottom: 10px;
}

/* Messages/Alerts */
.messages {
    margin-bottom: 20px;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

/* Form Styles */
.booking-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    max-width: 500px;
    margin: 0 auto 40px;
}

.booking-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.booking-form label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.booking-form input,
.booking-form select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

.btn-book {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

/* Confirmation Page Styles */
.confirmation-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 550px;
    margin: 0 auto 40px;
}

.confirmation-card h2 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.confirmation-details {
    margin-bottom: 25px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row .label {
    color: #666;
    font-weight: 500;
}

.detail-row .value {
    color: #333;
    font-weight: 600;
}

.detail-row.total {
    border-top: 2px solid #333;
    border-bottom: none;
    margin-top: 10px;
    padding-top: 15px;
}

.detail-row.total .value {
    color: #ff6b6b;
    font-size: 18px;
}

.confirmation-note {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.confirmation-note p {
    margin: 5px 0;
    color: #555;
    font-size: 14px;
}

.confirmation-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #5a6268;
}

.confirmation-actions .btn-book {
    width: auto;
    text-decoration: none;
    display: inline-block;
}
