/* Tab Styles */
.tabs-container {
    margin-top: 2rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    transition: background-color 0.3s, color 0.3s;
    color: #6c757d;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
}

.tab-btn.active {
    background-color: #2e7d32;
    color: white;
}

.tab-btn:hover:not(.active) {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.tab-content {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    margin-bottom: 1rem;
    color: #2e7d32;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
}

/* Responsive */
@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        border-radius: 0;
        border-bottom: 1px solid #dee2e6;
    }

    .tab-btn.active {
        border-radius: 4px;
    }
}