

body {
    direction: rtl;
    background: linear-gradient(90deg, #f1d1d494, #68a68973);
    background: url('../img/bg33.avif') no-repeat center center fixed;
    background-size: cover;
    font-family: "Cairo", serif;
}

.direct_auction {
    background: url(../img/bg55.jpg) no-repeat center center;
    background-size: cover;
}
.img-fluid {
    max-height:250px;
}
#main_auctions {
    height: 670px;
    overflow-y: auto;
    overflow-x: hidden;
}
.active, .nav-link:hover {
    color: #4CAF50;
}
#sub_auctions {
    height: 670px;
    overflow-y: auto;
    overflow-x: hidden;
}
#sub_auctions .card{
    background: url('../img/bg44.jpg') no-repeat center center;
    background-size: cover;
}


.conditions_rules {
    height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.accordion-button::after{
    margin-right:auto;
    margin-left: unset;
}
.image-slider-container {
    width: 100%;
    overflow: hidden; /* إخفاء الصور خارج الحاوية */
}
.image-slider {
    display: flex;
    transition: transform 0.5s ease;
}
.image-slider img {
    width: 100px;  /* عرض الصورة */
    height: 100px; /* ارتفاع الصورة */
    object-fit: cover;
    margin-right: 10px;
}

/* تنسيق عام لشريط التمرير */
input[type="range"] {
    width: 100%;
    padding: 10px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s;
}

/* لون الخلفية عند التفاعل */
input[type="range"]:hover {
    background: #ccc;
}

/* تنسيق المقبض (thumb) */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #a31d03;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* إضافة تدرج أو لون مميز عند تغيير القيمة */
input[type="range"]::-webkit-slider-runnable-track {
    background: linear-gradient(90deg, #4CAF50, #ddd);
}


