.miko-tabs-nav-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.miko-tabs-nav-auto {
    padding: 6px;
    border: 1px solid #E7ECEC;
    border-radius: 50px;
    background-color: white;
    display: inline-block;
    max-width: 100%;
    overflow-x: auto;
}

.miko-tabs-nav-auto::-webkit-scrollbar {
    height: 0;
}

/* Track */
.miko-tabs-nav-auto::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.miko-tabs-nav-auto::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.miko-tabs-nav-auto::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.miko-tabs-nav {
    display: inline-flex;
    white-space: nowrap;
}

.miko-tab-btn {
    background: transparent;
    padding: 12px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    color: #0F3D3E;
    box-shadow: none;
}

.miko-tab-btn.active {
    background: #C7DA3A;
}

.miko-tab-btn.active:focus {
    color: #0F3D3E;
}

.miko-tab-btn:hover {
    color: #0F3D3E;
    background: #C7DA3A;
    opacity: 0.9;
}

.miko-tabs-content .miko-tab-slide {
    display: none;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.miko-tabs-content .miko-tab-slide.active {
    display: block;
}

.miko-slide-bg {
    width: 100%;
    min-height: 440px;
    background-size: cover;
    background-position: center;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.miko-slide-overlay {
    position: relative;    
    padding: 20px;
    color: white;
    width: 100%;
    z-index: 1;
}

.miko-slide-title {
    font-size: 42px;
    font-weight: 700;
    color: #e4fa65;
    /* màu vàng giống hình */
}

.miko-slide-desc {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

/* Styles for steps layout */
/* ============================
   TAB NAVIGATION
   ============================ */
.miko-steps-wrapper {
    text-align: center;
}

.miko-steps-wrapper .miko-tabs-wrapper {}

.miko-steps-wrapper .miko-tabs-wrapper .miko-steps-auto {
    margin-bottom: 40px;
    padding: 6px;
    border: 1px solid #E7ECEC;
    border-radius: 50px;
    background-color: white;
    display: inline-flex;
    white-space: nowrap;
    max-width: 100%;
    overflow-x: auto;
}

.miko-tabs-wrapper .miko-tabs {
    display: inline-flex;
}

.miko-tabs-wrapper .miko-tab {
    background: transparent;
    padding: 12px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    color: #0F3D3E;
    box-shadow: none;
}

.miko-tabs-wrapper .miko-tab.active {
    background: #C7DA3A;
}

.miko-tabs-wrapper .miko-tab:hover {
    color: #0F3D3E;
    background: #C7DA3A;
    opacity: 0.9;
}

.miko-step-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24PX;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .miko-step-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .miko-step-list {
        grid-template-columns: 1fr;
    }
}

.miko-tab-step-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.miko-tab-step-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #4b6263;
    display: flex;
    align-items: center;
    gap: 10px;
}

.miko-tab-step-text {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.miko-tab-content {
    display: none;
}

.miko-tab-content.active {
    display: block;
}

.miko-tabs-nav-controls {
    display: none;
}

@media screen and (max-width: 640px) {
    .miko-tabs-nav-controls {
        /* display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 0.5rem; */
    }

    .miko-tabs-nav-wrapper {
        margin-bottom: 0.5rem;
    }

    .miko-slide-overlay{
        padding: 10px;
    }

    .miko-tabs-nav-controls .miko-tab-btns {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 8px #ccc;
        cursor: pointer;
        background-color: white;
    }

    .miko-tabs-nav-controls .miko-tab-btns svg {
        padding: 4px;
    }
}