/* Стили для вкладок tabs.css*/
.tabs-section {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tabs {
    display: flex;
    gap: 0;
    border-bottom: none;
}

.tab {
    padding: 1rem 2rem;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #6b7280;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.tab:hover {
    color: #374151;
    background-color: #f9fafb;
}

.tab.active {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
    background-color: #f8fafc;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: #4f46e5;
}

.content-section {
    padding: 2rem 0;
    min-height: 60vh;
}

.content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.content.active {
    display: block;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность для вкладок */
@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .tab {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e5e7eb;
        border-left: 3px solid transparent;
    }
    
    .tab.active {
        border-left-color: #4f46e5;
        border-bottom-color: #e5e7eb;
    }
    
    .tab.active::after {
        display: none;
    }
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    margin: -1rem 0 2rem 0;
    font-weight: 400;
}