/* ============================================================
   사용자 관리 — 화면 전용 스타일
   ============================================================ */

/* 테이블 회원 셀 (아바타 + 이름/이메일) */
.user-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-cell .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-normal);
    color: var(--bs-white);
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-primary-dark));
}

.user-cell .meta {
    min-width: 0;
}

.user-cell .name {
    font-weight: 600;
    color: var(--bs-emphasis-color);
    font-size: var(--font-normal);
}

.user-cell .email {
    font-size: var(--font-small);
    color: var(--bs-secondary);
}

/* 노쇼 강조 */
.noshow-warn {
    color: var(--bs-danger);
    font-weight: 700;
}
