.doctor-impersonation-banner {
    position: sticky;
    top: 0;
    z-index: 1600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 16px;
    color: #5c3500;
    background: #fff4cf;
    border-bottom: 1px solid #efcf76;
    box-shadow: 0 5px 18px rgba(80, 55, 0, .09);
    font-size: 14px;
    font-weight: 700;
}

.doctor-impersonation-banner form {
    margin: 0;
}

.doctor-impersonation-banner button,
.doctor-impersonation-start button {
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid #b66b00;
    border-radius: 10px;
    color: #fff;
    background: #b66b00;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.doctor-impersonation-start {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 14px 0;
    padding: 14px 16px;
    border: 1px solid #d6e5f5;
    border-radius: 14px;
    background: #f6faff;
}

.doctor-impersonation-start p {
    margin: 0;
    color: #526a84;
    font-size: 13px;
}

@media (max-width: 700px) {
    .doctor-impersonation-banner,
    .doctor-impersonation-start {
        align-items: stretch;
        flex-direction: column;
        gap: 9px;
    }

    .doctor-impersonation-banner button,
    .doctor-impersonation-start button {
        width: 100%;
    }
}
