.bravo-booking-page {
  background: #f5f5f5;
}

/* Quick Pay Booking Styles */
.quick-pay-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 50px 0;
}

.quick-pay-form {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
}

.quick-pay-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.quick-pay-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #5191FA;
    box-shadow: 0 0 0 0.2rem rgba(81, 145, 250, 0.25);
}

.btn-pay {
    background: linear-gradient(45deg, #5191FA, #4180e6);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(81, 145, 250, 0.4);
}

.features {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.feature {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.feature i {
    color: #5191FA;
    font-size: 24px;
    margin-bottom: 5px;
    display: block;
}

/* Status Pages */
.success-container {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
}

.failure-container {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
}

.callback-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.status-container {
    min-height: 100vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.status-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 50px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

