/* navigation.css */
/* Styles for the header, branding, connection status badge, and view switcher navigation */

header.sticky {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Connection Status Badges */
.status-badge-connecting {
    background-color: rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    border-color: rgba(255, 255, 255, 0.05);
}

.status-badge-cloud {
    background-color: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border-color: rgba(34, 197, 94, 0.2);
}

.status-badge-local {
    background-color: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.2);
}

/* Tab buttons for view switcher */
.nav-tab-active {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
    transform: translateY(-1px);
}

.nav-tab-inactive {
    color: #9ca3af;
}

.nav-tab-inactive:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.02);
}

/* Transition between views */
section {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

section.hidden {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}
