﻿.impersonate-panel {
    position: fixed; 
    bottom: 0; 
    right: 25px; 
    width: 12%;
    background-color: rosybrown;

    border-top: solid red 2px;
    border-left: solid red 2px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;

    text-align: center;
}

.impersonate-title {
    font-weight: bolder;
}

.impersonate-overlay {
    background-color: rgba(128, 128, 128, 0.4);
    z-index: 9999;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.impersonate-overlay-message-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    top: 280px;
    width: 400px;

    border: 1px solid black;
    border-radius: 16px;

    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);

    padding: 9px 9px 9px 9px;
}

.impersonate-overlay-message {
    text-align: center;
    vertical-align: middle;
}