/*--------------------------------------------------------------
>>> ENHANCED TAB STYLES
----------------------------------------------------------------
Modern, beautiful tab design for single software pages
--------------------------------------------------------------*/

.tabs-container {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-2xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tabs-nav {
    display: flex;
    border-bottom: 3px solid #e0e0e0;
    overflow-x: auto;
    background: #f8f9fa;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tab-button {
    padding: 18px 32px;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
}

.tab-button:hover {
    color: #1abc9c;
    background: rgba(26, 188, 156, 0.05);
}

.tab-button.active {
    color: #1abc9c;
    background: white;
    border-bottom-color: #1abc9c;
    font-weight: 700;
}

.tab-button:focus {
    outline: none;
}

.tabs-content {
    padding: 32px;
    background: white;
    min-height: 300px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Scrollbar styling for tabs nav */
.tabs-nav::-webkit-scrollbar {
    height: 4px;
}

.tabs-nav::-webkit-scrollbar-track {
    background: #e0e0e0;
}

.tabs-nav::-webkit-scrollbar-thumb {
    background: #1abc9c;
    border-radius: 2px;
}

.tabs-nav::-webkit-scrollbar-thumb:hover {
    background: #16a085;
}