/* ─── Impersonation Banner ──────────────────────────────────────────── */
#impersonationBanner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #fff;
    padding: 0 20px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 2px 16px rgba(220, 38, 38, 0.45);
    direction: rtl;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Heebo", Arial, sans-serif;
}

.impersonation-banner-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.impersonation-banner-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.impersonation-banner-text {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.impersonation-banner-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.impersonation-banner-badge.readonly {
    background: rgba(251, 191, 36, 0.25);
    border-color: rgba(251, 191, 36, 0.55);
    color: #fef3c7;
}

.impersonation-banner-timer {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.impersonation-exit-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, transform 0.1s;
    font-family: inherit;
}

.impersonation-exit-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

/* הזזת כל התוכן כשהבאנר מוצג */
body.impersonating {
    padding-top: 52px;
}

body.impersonating .notifications-bell {
    top: calc(16px + 52px);
}

/* כפתור התחזות ברשימת משתמשים */
.btn-impersonate {
    background: #dc2626;
    color: #fff;
    border: none;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.15s;
    font-family: inherit;
}

.btn-impersonate:hover {
    background: #b91c1c;
}

/* Modal btn-danger */
.btn-danger {
    background: #dc2626;
    color: #fff;
    border: 1px solid #dc2626;
}

.btn-danger:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

