.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.username {
    padding: 8px 15px;
    background-color: #4fc3f7;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.username:hover {
    background-color: #039be5;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .user-info {
        flex-direction: column;
        width: 100%;
        gap: 5px;
    }
    
    .username {
        width: 100%;
        text-align: center;
    }
}