/**
 * Impersonation Styles
 * Styles for impersonation banner and related UI elements
 */

/* Impersonation banner */
.impersonation-banner {
    background-color: #ff4444;
    color: white;
    padding: 10px 20px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    font-weight: bold;
}

.impersonation-banner a {
    color: white;
    text-decoration: underline;
    margin-left: 10px;
}

.impersonation-banner a:hover {
    text-decoration: none;
}

/* Adjust content when impersonation banner is active */
body.impersonating {
    padding-top: 50px;
}