/* أنماط عامة */
#abs-booking-form {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.abs-form-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
}

.abs-form-section h3 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    font-size: 20px;
}

#abs-booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

#abs-booking-form input,
#abs-booking-form select,
#abs-booking-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

#abs-booking-form input:focus,
#abs-booking-form select:focus,
#abs-booking-form textarea:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.2);
}

#abs-booking-form input[type="submit"] {
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 16px;
    transition: background 0.3s;
    border-radius: 6px;
    font-weight: 600;
    display: block;
    width: 100%;
    margin-top: 20px;
}

#abs-booking-form input[type="submit"]:hover {
    background: #005177;
}

.abs-submit-section {
    text-align: center;
    margin-top: 30px;
}

/* أقسام الدفع */
.abs-payment-method {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.abs-payment-method:hover {
    border-color: #0073aa;
    background: #f5fbff;
}

.abs-payment-method input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
}

.abs-payment-method label {
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    flex: 1;
}

.abs-payment-section {
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    margin: 20px 0;
}

.abs-bank-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px dashed #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.abs-bank-details h4 {
    margin-top: 0;
    color: #0073aa;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    font-size: 18px;
}

.abs-bank-instructions {
    background: #e9f7fe;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
    margin-bottom: 20px;
    font-size: 15px;
}

.abs-bank-fields {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.abs-pay-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 20px;
}

.abs-pay-btn:hover {
    background: #219653;
}

/* رسائل الحالة */
.abs-success {
    background: #dff0d8;
    color: #3c763d;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #46b450;
    font-size: 16px;
}

.abs-error {
    background: #f2dede;
    color: #a94442;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    border-left: 4px solid #dc3232;
}

/* أنماط لوحة التحكم */
.abs-stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.abs-stat-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.abs-stat-box:hover {
    transform: translateY(-5px);
}

.abs-stat-box h3 {
    margin-top: 0;
    color: #0073aa;
    font-size: 18px;
}

.abs-stat-box p {
    font-size: 28px;
    font-weight: bold;
    margin: 15px 0 0;
    color: #2c3e50;
}

/* متجاوبة */
@media (max-width: 992px) {
    .abs-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #abs-booking-form {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .abs-stats-container {
        grid-template-columns: 1fr;
    }
    
    .abs-action-links a {
        padding: 8px;
        font-size: 12px;
    }
    
    .abs-form-section {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    #abs-booking-form {
        padding: 15px;
    }
    
    .abs-payment-section {
        padding: 15px;
    }
}