/* ================================
   SMART WIZARD - GREEN ORANGE THEME
================================ */

.sw-theme-arrows {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #d1fae5;
    box-shadow: 0 6px 18px rgba(15,118,110,0.08);
}

    /* CONTAINER */

    .sw-theme-arrows > .sw-container {
        min-height: auto;
        background: #ffffff;
    }

    .sw-theme-arrows .step-content {
        padding: 15px;
        border: none;
        background: #ffffff;
    }

    /* TOP TABS */

    .sw-theme-arrows > ul.step-anchor {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 10px;
        margin: 0;
        list-style: none;
        border: none;
        background: linear-gradient(135deg, #0f766e, #14b8a6);
    }

        /* TAB ITEM */

        .sw-theme-arrows > ul.step-anchor > li {
            margin: 0 !important;
        }

            /* TAB BUTTON */

            .sw-theme-arrows > ul.step-anchor > li > a,
            .sw-theme-arrows > ul.step-anchor > li > a:hover {
                border: none !important;
                background: rgba(255,255,255,0.16);
                color: #ffffff !important;
                border-radius: 12px !important;
                padding: 10px 18px !important;
                font-size: 12px !important;
                font-weight: 700;
                min-height: 42px !important;
                height: auto !important;
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none !important;
                transition: background 0.2s ease;
                white-space: nowrap;
                box-shadow: none !important;
            }

                /* REMOVE OLD ARROWS */

                .sw-theme-arrows > ul.step-anchor > li > a:before,
                .sw-theme-arrows > ul.step-anchor > li > a:after {
                    display: none !important;
                }

                /* HOVER */

                .sw-theme-arrows > ul.step-anchor > li > a:hover {
                    background: rgba(255,255,255,0.24);
                }

            /* ACTIVE */

            .sw-theme-arrows > ul.step-anchor > li.active > a {
                background: #fff7ed !important;
                color: #c2410c !important;
                border: 1px solid #fdba74 !important;
                box-shadow: 0 4px 10px rgba(249,115,22,0.18);
            }

            /* DONE */

            .sw-theme-arrows > ul.step-anchor > li.done > a {
                background: linear-gradient(135deg, #fb923c, #f97316) !important;
                color: #ffffff !important;
            }

            /* DISABLED */

            .sw-theme-arrows > ul.step-anchor > li.disabled > a {
                opacity: 0.6;
                cursor: not-allowed;
            }

    /* TOOLBAR */

    .sw-theme-arrows .sw-toolbar {
        padding: 15px;
        background: #ffffff;
        border-top: 1px solid #ecfdf5;
    }

/* MOBILE */

@media screen and (max-width:768px) {

    .sw-theme-arrows > ul.step-anchor {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

        .sw-theme-arrows > ul.step-anchor::-webkit-scrollbar {
            display: none;
        }

        .sw-theme-arrows > ul.step-anchor > li > a {
            flex-shrink: 0;
            font-size: 11px !important;
            padding: 8px 14px !important;
            min-height: 38px !important;
        }
}

/* REMOVE BLUE LOADER */

.sw-theme-arrows::before {
    display: none !important;
}
