/* Top Panel — z design desktop.jsx TopBar */
.main-panel-top {
    background-color: #1A2332;
    border-bottom: 1px solid rgba(26,35,50,0.1);
    font-family: 'Geist', 'Inter', system-ui, sans-serif;
}

.top__menu_container {
    display: flex;
    height: 36px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1.5rem;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: #FAF7F2;
}

.top__menu_container-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FAF7F2;
}

.top__menu_container-item svg {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
}

.top__menu_container-item p {
    margin: 0;
    white-space: nowrap;
    color: #FAF7F2;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.top__menu_container-separator {
    color: rgba(255,255,255,0.4);
    margin: 0 4px;
}

@media (max-width: 1024px) {
    .top__menu_container-item-fourth { display: none; }
}

@media (max-width: 767px) {
    .top__menu_container {
        height: 32px;
        justify-content: center;
    }
    .top__menu_container-item-third,
    .top__menu_container-item-fourth { display: none; }
}

@media (max-width: 480px) {
    .top__menu_container-item-first { display: none; }
}
