/* flight-selector-nav styles */

.flight-selector-nav {
    display: block;
    background-color: var(--surface-color, #fff);
    border-bottom: 1px solid var(--border-color, #e0e0e0);
}

.nav-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.nav-container button {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary, #666);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.nav-container button:hover {
    color: var(--text-primary, #1a1a1a);
}

.nav-container button.active {
    color: var(--accent-color, #0066cc);
}

.indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background-color: var(--accent-color, #0066cc);
    transition: transform 0.25s ease;
}

.indicator.right {
    transform: translateX(100%);
}
