.user-card1 {
    width: 200%;
    padding: 18px 20px;
    min-height: 88px;
    box-sizing: border-box;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    box-shadow: var(--glow-secondary);
    transition: var(--transition-default);
    opacity: 0.9;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.left-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.name-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 6px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 8px;
}

.display-line {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.user-id {
    opacity: 0.7;
    font-size: 0.85em;
}

.username-line,
.email-line,
.phone-line {
    font-size: 0.9em;
    opacity: 0.85;
}

.right-info {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 32px;
}

.role-badge {
    display: flex;
    align-items: center;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.85em;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid color-mix(in srgb, currentColor 45%, transparent);
    white-space: nowrap;
    box-sizing: border-box;
    line-height: 1;
}

.settings-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: inherit;
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 5px;
}

.settings-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}