
/* //////////////////////////////////////////////

    SÜREÇLERİN GÖSTERİLDİĞİ ARAYÜZ KODLARI

////////////////////////////////////////////// */

    .progress-steps {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin: 20px 0;
        font-family: Arial, sans-serif;
    }

    .step-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        flex: 1;
        text-align: center;
    }

    .step-circle {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #6b7280;
        transition: .3s;
        z-index: 2;
        position: relative; /* çizgi için kritik */
    }

    .step-text {
        margin-top: 8px;
        font-size: 13px;
        color: #6b7280;
        font-weight: 500;
        min-height: 40px; /* uzun text sorunu çözülür */
        max-width: 110px;
        line-height: 1.2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step-item:not(:last-child) .step-circle::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 100%;
        width: calc(200% + 50px);
        height: 3px;
        background: #e5e7eb;
        transform: translateY(-50%);
        z-index: 1;
    }

    .step-item.completed .step-circle {
        background: #22c55e;
        color: white;
    }

    .step-item.completed .step-text {
        color: #22c55e;
    }

    .step-item.completed:not(:last-child) .step-circle::after {
        background: #22c55e;
    }

    /* active */
    .step-item.active .step-circle {
        background: #2563eb;
        color: white;
        box-shadow: 0 0 0 6px rgba(37,99,235,.15);
    }

    .step-item.active .step-text {
        color: #2563eb;
        font-weight: 600;
    }

    /* pending hover */
    .step-item.pending .step-circle:hover {
        transform: scale(1.05);
        background: #d1d5db;
    }



/* //////////////////////////////////////////////

    SMART TABLE (AKILLI TABLO DÜZENLEME) YAPISINA AİT KODLAR

////////////////////////////////////////////// */


.smart-table .sort-icon {
    margin-left: 6px;
    font-size: 11px;
    opacity: .4;
    transition: .2s;
}

smart-table.th:hover .sort-icon {
    opacity: 1;
}