/* ═══ Banned User Visual Indicators ═══ */

/* Username strikethrough for banned users */
.username--banned {
    text-decoration: line-through;
    text-decoration-color: var(--danger, #dc2626);
    text-decoration-thickness: 2px;
    opacity: 0.7;
}

/* Avatar ban overlay container */
.avatar--banned {
    position: relative;
    display: inline-block;
    border-radius: 9999px;
    overflow: hidden;
}

/* Semi-transparent dark overlay on avatar (round) */
.avatar--banned>div:last-of-type,
.avatar--banned::after {
    border-radius: 9999px;
}

/* Ban icon overlay on avatar */
.avatar--banned .avatar-ban-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #ef4444;
    font-size: 1.25em;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

/* Ban badge next to username */
.ban-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.25);
    vertical-align: middle;
    margin-left: 0.35rem;
    white-space: nowrap;
}

.ban-badge i {
    font-size: 0.6rem;
}