/* Global Tabs CSS */

.tabs-nav {
    display: flex;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 20px;
    gap: 5px;
    padding-left: 0;
    list-style: none;
}

.tab-btn {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.2s;
    margin-bottom: -1px;
    font-size: 1rem;
    text-decoration: none;
    display: block;
}

.tab-btn:hover {
    background: #e9ecef;
    color: #495057;
    text-decoration: none;
}

.tab-btn.active {
    background: #fff;
    color: #495057;
    border-bottom-color: #fff;
    border-top: 2px solid var(--mz-two);
}

.tab-pane { display: none; }
.tab-pane.active { display: block; }