.topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-user {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 10px;
    color: #333;
    background: #f5f7fa;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: .2s ease;
}

.topbar-user i {
    font-size: 16px;
}

.topbar-user:hover {
    background: #e9edf2;
    color: #111;
    text-decoration: none;
}

@media (max-width: 767px) {
    .topbar-user span {
        display: none;
    }

    .topbar-user {
        width: 38px;
        height: 38px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .topbar-actions {
        gap: 7px;
    }
}