/* ============ МИНИМАЛИСТИЧНАЯ НАВИГАЦИЯ ============ */

.table-nav-container {
    position: relative;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
}

.absolute-minimal-nav {
    display: flex;
    gap: 4px;
    padding: 15px 0;
    position: relative;
}

.absolute-item {
    width: 35px;
    height: 4px;
    background: rgba(95, 170, 184, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.absolute-item:hover {
    background: var(--sea-turquoise);
    transform: scaleY(1.3);
}

.absolute-item.active {
    background: var(--sea-turquoise);
    box-shadow: 0 1px 4px rgba(95, 170, 184, 0.3);
}

/* Подсказки при наведении */
.absolute-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-blue);
    color: var(--light-beige);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    z-index: 100;
}

.absolute-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--dark-blue);
}

.absolute-item:hover .absolute-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

/* Анимация пульсации */
@keyframes absolutePulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.absolute-item.pulse {
    animation: absolutePulse 2s ease-in-out infinite;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .table-nav-container {
        margin-top: 30px;
        padding-top: 15px;
    }
    
    .absolute-item {
        width: 30px;
        height: 3px;
    }
    
    .absolute-tooltip {
        font-size: 0.7rem;
        padding: 5px 8px;
    }
    
    /* На мобильных показываем подсказку при тапе */
    .absolute-item.active .absolute-tooltip {
        opacity: 1;
        transform: translateX(-50%) translateY(-2px);
    }
}

/* Ультра-чистая версия (без разделительной линии) */
.ultra-clean {
    border-top: none;
    padding-top: 25px;
}

.ultra-clean .absolute-minimal-nav {
    padding: 10px 0;
}