/* 
 * تنسيقات مخصصة لأزرار الكاروسيل
 * تم إنشاؤها في: 26 سبتمبر 2025
 */

/* تنسيق مشترك لأزرار الكاروسيل */
.custom-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #002147; /* لون أزرق غامق مثل الزر الظاهر فوق الصور */
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 9999 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.8;
    pointer-events: auto !important;
}

/* زر السابق */
.custom-carousel-prev {
    left: 20px;
}

/* زر التالي */
.custom-carousel-next {
    right: 20px;
}

/* تأثير التحويم */
.custom-carousel-control:hover {
    background-color: #0d47a1; /* لون أفتح قليلاً عند التحويم */
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

/* تأثير الضغط */
.custom-carousel-control:active {
    transform: translateY(-50%) scale(0.95);
}

/* لضمان ظهور الأزرار في جميع الشاشات */
@media (max-width: 768px) {
    .custom-carousel-control {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .custom-carousel-control {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .custom-carousel-prev {
        left: 10px;
    }
    
    .custom-carousel-next {
        right: 10px;
    }
}
