/* Контейнер для табов с позиционированием */
.row {
    position: relative;
}

/* Стрелки для прокрутки табов */
.tabs-nav-arrow {
    position: absolute;
    top: 0;
    width: 36px;
    height: 36px;
    display: none;
    align-items: center;
    justify-content: center;
    background: #0066CC;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 15;
    padding: 0;
    margin-bottom: 40px;
}

.tabs-nav-arrow:hover {
    background: #0052a3;
    transform: translateY(-50%) scale(1.05);
}

.tabs-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.tabs-nav-arrow-prev {
    left: -50px;
}

.tabs-nav-arrow-next {
    right: -50px;
}

/* Сообщение об отсутствии результатов */
.no-results-message {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: #f8f9fb;
    border-radius: 12px;
    border: 2px dashed #e0e0e0;
}

.no-results-content {
    text-align: center;
}

.no-results-content p {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin: 0 0 15px 0;
}

.no-results-content p:first-child {
    font-weight: 600;
    color: #1a1a1a;
}

.no-results-button {
    padding: 12px 32px;
    background: #0066CC;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'TikTok Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.no-results-button:hover {
    background: #0052a3;
    transform: scale(1.02);
}

.no-results-button:active {
    transform: scale(0.98);
}

/* Адаптивность стрелок */
@media (max-width: 1024px) {
    .tabs-nav-arrow-prev {
        left: -45px;
    }
    
    .tabs-nav-arrow-next {
        right: -45px;
    }
}

@media (max-width: 768px) {
    .tabs-nav-arrow {
        display: none !important;
    }
    
    .no-results-message {
        min-height: 250px;
    }
    
    .no-results-content p {
        font-size: 14px;
    }
    
    .no-results-button {
        padding: 10px 24px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tabs-nav-arrow {
        display: none !important;
    }
    
    .no-results-message {
        min-height: 200px;
    }
    
    .no-results-content p {
        font-size: 13px;
    }
    
    .no-results-button {
        padding: 10px 20px;
        font-size: 12px;
    }
}
