.tabs-container_c9274fe4 {
    width: 100%;
}
.tabs-nav_c9274fe4 {
    display: flex;
    justify-content: center;
    gap: 15px;
    border-bottom: 2px solid #eaeaea;
    margin-bottom: 25px;
}
.tab-nav-btn_c9274fe4 {
    background: #296C5C;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    color: #ffffff;
}
.tab-nav-btn_c9274fe4.active {
    background: #FF8F3F;
    color: #ffffff;
}
.tab-pane_c9274fe4 {
    display: none;
}
.tab-pane_c9274fe4.active {
    display: block;
    animation: fadeIn_c9274fe4 0.4s ease;
}
.no-template-msg_c9274fe4 {
    padding: 20px;
    background: #fdfdfd;
    border: 1px dashed #cccccc;
    text-align: center;
    color: #777777;
    border-radius: 4px;
}
@keyframes fadeIn_c9274fe4 {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive styles */
@media (max-width: 767px) {
    .tabs-nav_c9274fe4 {
        flex-direction: column !important;
        gap: 12px !important;
        border-bottom: none !important;
    }
    .tab-nav-btn_c9274fe4 {
        width: 100% !important;
        border-radius: 4px !important;
    }
}
