.user {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login {
    display: none;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: #0f172a;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 40px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nickname {
    color: #334155;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 12px;
}

.email {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 24px;
}

.operations {
    display: flex;
    align-items: center;
    color: #475569;
}

.operations>*+* {
    margin-left: 40px;
}

.svg {
    height: 20px;
    width: 20px;
    cursor: pointer;
}

.svg:hover {
    fill: #f0f0f0;
}