﻿.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-radius: 26px;
    background: rgba(255,255,255,0.06);
    box-shadow: 0 12px 36px rgba(0,0,0,0.20);
    backdrop-filter: blur(10px);
}

.page-kicker {
    font-size: 12px;
    color: #93c5fd;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-title {
    margin-top: 4px;
    font-size: 30px;
    font-weight: 800;
    color: #f8fafc;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-pill,
.time-pill {
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: #eff6ff;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    box-shadow: 0 10px 22px rgba(37,99,235,0.22);
}

.badge-soft {
    background: rgba(59,130,246,0.2);
    color: #93c5fd;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    margin: 0 8px;
    white-space: nowrap;
}

.logout-btn {
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: #b91c1c;
    color: white;
    cursor: pointer;
    font-weight: 600;
}
.version-pill {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #bbf7d0;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
.company-locked {
    opacity: 0.75;
    pointer-events: auto;
}
.mobile-info-btn,
.mobile-info-panel {
    display: none;
}

@media (max-width: 768px) {

    .topbar {
        position: relative;
    }

    .topbar-right {
        display: none;
    }

    .mobile-info-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-info-panel {
        display: none !important;
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        z-index: 9999;
        flex-direction: column;
        gap: 10px;
    }

        .mobile-info-panel.is-open {
            display: flex !important;
        }
}