/* ===== IMPERSONATION BANNER STYLES ===== */
.impersonation-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.banner-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.banner-content .btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.banner-content .btn:hover {
    background: white;
    color: #ff6b6b;
    transform: translateY(-2px);
}

/* Adjust main content to account for banner */
body.impersonating {
    padding-top: 80px;
}

/* ===== END IMPERSONATION BANNER STYLES ===== */
