/* Booking Management Styles - OTA Theme */

.booking-management-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 20px;
}

.booking-management-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.booking-management-heading {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.booking-management-description {
    font-size: 15px;
    color: #6c757d;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 40px;
}

.booking-search-form .form-group {
    margin-bottom: 24px;
}

.booking-search-form .form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
}

.booking-search-form .form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.booking-search-form .form-control:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.btn-booking-search {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-booking-search:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.alert {
    padding: 12px 16px;
    margin-bottom: 24px;
    border-radius: 6px;
    font-size: 14px;
}

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

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

/* Booking Display Page Styles */

.booking-display-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.booking-display-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
}

/* Left Column - 80% */
.booking-details-column {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.booking-section-heading {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.booking-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.booking-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.booking-info-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.booking-info-row:last-child {
    border-bottom: none;
}

.booking-info-label {
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
}

.booking-info-value {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}

.room-section {
    margin-bottom: 20px;
}

.room-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: #e9ecef;
    border-radius: 6px;
}

.guest-item {
    padding: 8px 0 8px 20px;
    margin-bottom: 8px;
}

.guest-label {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 4px;
}

.guest-name {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}

/* Right Column - 20% Sidebar */
.booking-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-reference-card,
.quick-actions-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.sidebar-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.reference-display {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    padding: 12px;
    background: #fff5f2;
    border-radius: 6px;
    letter-spacing: 1px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-action {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-action:hover {
    background: #e9ecef;
    border-color: #ff6b35;
    color: #ff6b35;
}

.btn-action-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    border: none;
}

.btn-action-primary:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff6b35 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-action-danger {
    color: #dc3545;
    border-color: #dc3545;
}

.btn-action-danger:hover {
    background: #dc3545;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-display-grid {
        grid-template-columns: 1fr;
    }

    .booking-sidebar-column {
        order: -1;
    }

    .booking-management-card {
        padding: 24px;
    }
}
