#wpadminbar .userroleswitcher-adminbar-search-form {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}
#wpadminbar .userroleswitcher-adminbar-search-form input[type="text"] {
    height: 24px;
    padding: 2px 6px;
    font-size: 13px;
    border-radius: 3px;
    border: 1px solid #ccc;
}
#wpadminbar .userroleswitcher-adminbar-search-form input[type="submit"] {
    margin-left: 4px;
    height: 24px;
    font-size: 13px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
#wpadminbar .userroleswitcher-adminbar-search-form input[type="submit"]:hover {
    background: #006799;
}
#switch-back-bar a::before,
#switch-back-bar a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: white;
    transform-origin: center;
}
#switch-back-bar a::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
#switch-back-bar a::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
#switch-back-bar {
    position: fixed;
    top: 10px;
    left: 50%;
    background: black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease; 
}
#switch-back-bar:hover{
    transform: scale(1.05);
}
#switch-back-bar a {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    line-height: 1;
    width: 100%;
    height: 100%;
}
.impersonateButton {
    text-align: center;
    margin: 6px 0;
    position: absolute;
    margin-left: auto;
    left: 50%;
    margin-right: auto;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;            
}
.impersonateButton:hover{
    transform: scale(1.05);
}
.impersonateButton a{
    padding: 8px 15px !important;
    min-height: auto !important;
    line-height: 1.1 !important;
    margin: auto !important;
    font-weight: bold !important;
}
.impersonateUserWrapper {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;    
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}