/* User header block — справа на странице */
.user-header {
    position: fixed;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: #0c0e12;
    border: 1px solid #1a1e26;
    border-radius: 10px;
    z-index: 100;
}

button, input, select, textarea {
    font-family: 'Inter', sans-serif;
}

.user-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: #14171c;
}

.user-header-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: #94a3b8;
}

.user-header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-header-name {
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #e5e7eb;
}

.user-header-email {
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    color: #94a3b8;
}

.user-header-logout {
    margin-left: 4px;
    padding: 6px 12px;
    font-family: 'Inter', sans-serif;
    background: #1a1e26;
    border: 1px solid #252a33;
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
}

.user-header-logout:hover {
    background: #252a33;
    color: #e5e7eb;
}
