/**
 * PrestaShop module created by VEKIA
 * Updated for Horizontal Layout (4 items per row)
 */

/* Ana Kapsayıcı ve Form Yapısı */
.sbsblock .block_content {
    display: block;
    clear: both;
    overflow: visible; /* Select2 açılır menülerinin kesilmemesi için */
}

.sbsblock form {
    display: flex;
    flex-wrap: wrap;   /* Kutular sığmazsa alt satıra geçebilsin */
    gap: 10px;         /* Kutular arasındaki boşluk */
    align-items: flex-end; /* Select ve Butonları alt hizada eşitler */
    width: 100%;
}

/* Her Bir Select Kutusu Kapsayıcısı */
.sbsblock .sbs_selectbox {
    display: block;
    flex: 1;           /* 4 kutunun da eşit genişlikte (1/4) olmasını sağlar */
    min-width: 150px;  /* Çok daralınca okunabilirliği korur */
    padding: 2px;
    font-size: 14px;
}

/* Input ve Select Elemanları */
.sbsblock input, 
.sbsblock select {
    width: 100% !important;
    height: 40px;      /* Standart bir yükseklik */
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Loader Ayarları */
.sbsblock .sbs_loader {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-bottom: 8px; /* Buton hizasına çekmek için */
}

.sbsblock .sbs_loader div {
    background: #FFF url('../img/loader.gif') no-repeat center;
    height: 25px;
    width: 25px;
    display: none;
    border-radius: 25px;
}

/* Submit Buton Alanı */
.sbsblock .sbs_submit {
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
}

.sbsblock .sbs_submit input[type="submit"] {
    width: 100% !important;
    padding: 0 20px;
  
    height: 40px;
    cursor: pointer;
}

/* Durum Sınıfları */
.sbsblock .disabled {
    opacity: 0.5;
    pointer-events: none; /* Pasifken tıklamayı engeller */
}

.sbsblock .enabled {
    opacity: 1.0;
}

/* Select2 ve Modern Dropdown Uyumluluğu */
.sbsblock .select2-dropdown {
    z-index: 999999 !important;
}

.sbsblock span.select2-container {
    width: 100% !important;
}

/* --- Mobil Uyumluluk (Telefonlarda alt alta gelsin) --- */
@media (max-width: 768px) {
    .sbsblock form {
        flex-direction: column;
        align-items: stretch;
    }
    .sbsblock .sbs_selectbox {
        width: 100% !important;
        flex: none;
    }
    .sbsblock .sbs_submit input {
        width: 100% !important;
        
    }
}

 
    /* Dış kapsayıcı ve genel hizalama */
    .sbs_div {
        margin-bottom: 15px;
    }

    /* Select2 Ana Kutusu Yüksekliği */
    .sbs_div .select2-container--default .select2-selection--single {
        height: 45px !important; /* Yüksekliği buradan ayarlayabilirsiniz */
        display: flex;
        align-items: center;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    /* Seçili metnin dikeyde ortalanması */
    .sbs_div .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 45px !important;
        padding-left: 12px;
    }

    /* Sağdaki ok (arrow) işaretinin ortalanması */
    .sbs_div .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 45px !important;
        top: 0;
        right: 5px;
        display: flex;
        align-items: center;
    }

    /* Temizleme (x) işaretinin ortalanması */
    .sbs_div .select2-selection__clear {
        height: 45px !important;
        margin-right: 10px;
        line-height: 42px !important;
    }
 