/* Shared demo navigation bar — same on Provider, Payer, Patient */

.demo-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #0d2137;
    color: #fff;
    padding: 0 16px;
    height: 40px;
    flex-shrink: 0;
    border-bottom: 1px solid #1a365d;
}

.demo-nav-inner {
    display: flex;
    align-items: center;
    gap: 4px;
}

.demo-nav-label {
    font-size: 12px;
    color: #94a3b8;
    margin-right: 12px;
    font-weight: 500;
}

.demo-nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.demo-nav-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

.demo-nav-item-active {
    background: #1e40af;
    color: #fff;
}

.demo-nav-item-active:hover {
    background: #2563eb;
    color: #fff;
}

.demo-nav-sep {
    width: 1px;
    height: 20px;
    background: #334155;
    margin: 0 4px;
    flex-shrink: 0;
}
