/* Tab System Styles */

/* Tab Navigation */
.tab-navigation {
    display: flex;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    overflow-x: auto;
    white-space: nowrap;
}

.tab-button {
    padding: 12px 20px;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    transition: all 0.2s ease;
}

.tab-button:hover {
    color: #0066cc;
}

.tab-button.active {
    color: #0066cc;
    border-bottom-color: #0066cc;
}

/* Tab Content */
.tab-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background-color: #ffffff;
    height: calc(100vh - 140px); /* Full height minus top nav (60px), bottom band (60px), and tab navigation */
}

.tab-pane {
    display: none;
    height: 100%;
}

.tab-pane.active {
    display: block;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tab-button {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .tab-content {
        padding: 15px;
    }
}