/* =========================================
   STYLE CHO HỆ THỐNG TAB
   ========================================= */

/* Wrapper chính */
.acnm-unified-wrapper {
    width: 100%;
}

/* Container chứa các nút tab */
.acnm-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #ededed;
    padding-bottom: 10px;
}

/* Style nút tab */
.acnm-tab-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: #504f57;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.acnm-tab-btn:hover {
    background: rgba(0, 0, 0, 0.03);
    color: #000;
}

/* Nút active */
.acnm-tab-btn.active {
    background: #3c4148;
    color: #fff;
}

/* Nội dung tab */
.acnm-tab-content {
    display: none;
    animation: acnmFadeIn 0.4s ease;
}

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

/* Hiệu ứng Fade In */
@keyframes acnmFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}