/* Adım İkonlarının Yan Yana Görünmesi İçin Düzeltme */

/* Tüm ekran boyutları için yatay adım düzeni */
.steps-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    overflow-x: auto !important;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
}

.steps-container::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
}

.step {
    flex: 0 0 auto !important;
    width: 19% !important;
    min-width: 60px !important;
    max-width: 80px !important;
    margin: 0 !important;
    text-align: center !important;
    display: inline-block !important;
    float: none !important;
}

/* Adım ikonu */
.step-icon {
    width: 50px !important;
    height: 50px !important;
    margin: 0 auto 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background-color: #1a1a1a !important;
    color: #fff !important;
}

/* Adım numarası */
.step-number {
    font-size: 1.2rem !important;
    opacity: 0.6 !important;
    margin-bottom: 0.5rem !important;
}

/* Adım başlığı */
.step h3 {
    font-size: 0.9rem !important;
    margin: 0 !important;
    font-weight: 600 !important;
}

/* Adımlar arasındaki çizgi */
@media (max-width: 767px) {
    .step:not(:last-child)::after {
        content: "—" !important;
        position: absolute !important;
        right: -15px !important;
        top: 25px !important;
        color: rgba(0, 0, 0, 0.3) !important;
        font-weight: 300 !important;
    }
}

/* RTL Desteği */
html[dir="rtl"] .steps-container {
    direction: ltr !important; /* Adımların sırası değişmesin */
}

html[dir="rtl"] .step h3 {
    direction: rtl !important; /* Başlıklar RTL olsun */
}
