/* ========== DOCS NAVIGATION ========== */
.docs-navigation {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 0.75rem 0.75rem 0 0;
    border: 1px solid #2d3748 !important;
    border-bottom: none !important;
    position: relative;
    overflow: hidden;
}

.docs-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.02) 0%, rgba(56, 161, 105, 0.01) 100%);
    pointer-events: none;
}

.docs-nav-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 2;
}

.docs-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0aec0;
    text-decoration: none;
    padding: 0.875rem 1.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
}

.docs-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(56, 161, 105, 0.05));
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.5rem;
    z-index: -1;
}

.docs-nav-link:hover {
    color: #48bb78;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.15);
    border-color: rgba(72, 187, 120, 0.3);
}

.docs-nav-link:hover::before {
    opacity: 1;
}

.docs-nav-link:active {
    transform: translateY(0);
}

.docs-nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.docs-nav-link:hover .docs-nav-icon {
    transform: scale(1.1);
    color: #48bb78;
} 