.topbar {
    background: #fff;
    border-bottom: 1px solid #e2e1da;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 60px;
}

.topbar-title {
    display: flex;
    align-items: center;
}

.topbar-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #1a1a18;
    font-weight: 600;
    font-size: 15px;
}

.topbar-logo:hover {
    color: #eda100;
}

.topbar-sub {
    font-size: 13px;
    color: #898781;
}

.topbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.topbar-nav-link {
    font-size: 13px;
    font-weight: 500;
    color: #6b6b67;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
}

.topbar-nav-link:hover {
    background: #f5f5f3;
    color: #1a1a18;
}

.topbar-nav-link.active {
    background: #eaf2fc;
    color: #2a78d6;
    font-weight: 600;
}

@media (max-width: 700px) {
    .topbar {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 1rem;
    }

    .topbar-nav {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
        margin-top: 6px;
    }
}