/**
 * Tab Navigation Styles
 * Generic tab navigation with active states and responsive design
 */

.tab-navigation {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

.tab-btn.active {
    background: #2c5530;
    color: white;
}

.tab-content {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .tab-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .tab-btn span {
        display: none;
    }
}
