.top-bar {
    background: var(--color-primary);
    height:var(--topbar-height)
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 13px;
}

.top-bar-left,
.top-bar-account {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-account {
    flex-shrink: 0;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition-base);
}

a.top-bar-item:hover,
button.top-bar-item:hover {
    opacity: 1;
    text-decoration: underline;
}

button.top-bar-item {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
}

.top-bar-form {
    display: inline-flex;
    margin: 0;
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
}

.top-bar-item--accent {
    color: var(--color-accent-light);
    opacity: 1;
    font-weight: 600;
}

@media (max-width: 768px) {
    .top-bar-inner {
        flex-wrap: wrap;
        gap: 8px 16px;
        font-size: 12px;
    }

    .top-bar-left,
    .top-bar-account {
        flex-wrap: wrap;
        gap: 8px 16px;
    }
}
