.modern-tabs {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.modern-tabs .nav-tabs {
    border-bottom: 2px solid #dee2e6;
    padding: 0 1rem;
}

.modern-tabs .nav-link {
    color: #495057;
    border: none;
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.modern-tabs .nav-link:hover {
    color: #0d6efd;
    background-color: transparent;
    border-color: transparent;
}

.modern-tabs .nav-link.active {
    color: #0d6efd;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid #0d6efd;
}

.modern-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0d6efd;
}

.modern-tabs .tab-content {
    background: #fff;
    border-radius: 0 0 0.5rem 0.5rem;
}

/* Анимация переключения табов */
.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Адаптивность */
@media (max-width: 768px) {   
    .modern-tabs .nav-link {
        padding: 0.7rem;
        font-size: 0.9rem;
        margin-right: 0;
    }
}

.tab-counter {
    background: var(--link-color);
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 6px;
    display: inline-block;
    line-height: 1.2;
    min-width: 20px;
    text-align: center;
}