.gm-exit-feedback-lock { overflow: hidden; }
.gm-exit-feedback-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 15, 15, 0.42);
    backdrop-filter: blur(2px);
}
.gm-exit-feedback-dialog {
    position: relative;
    width: min(560px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    box-sizing: border-box;
    border-radius: 18px;
    padding: 30px;
    background: #fff;
    color: #171717;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
    font-family: inherit;
}
.gm-exit-feedback-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #555;
    font: 30px/1 Arial, sans-serif;
    cursor: pointer;
}
.gm-exit-feedback-close:hover,
.gm-exit-feedback-close:focus { background: #f2f2f2; outline: none; }
.gm-exit-feedback-title {
    margin: 0 42px 10px 0;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;
}
.gm-exit-feedback-text {
    margin: 0 0 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}
.gm-exit-feedback-reasons { display: grid; gap: 9px; }
.gm-exit-feedback-reason {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 11px;
    padding: 12px 14px;
    background: #fff;
    color: #222;
    text-align: left;
    font: inherit;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}
.gm-exit-feedback-reason:hover,
.gm-exit-feedback-reason:focus { border-color: #999; outline: none; }
.gm-exit-feedback-reason.is-selected { border-color: #222; background: #f6f6f6; }
.gm-exit-feedback-details { margin-top: 18px; }
.gm-exit-feedback-comment-label { display: block; margin-bottom: 8px; font-weight: 600; }
.gm-exit-feedback-comment {
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    padding: 11px 12px;
    font: inherit;
}
.gm-exit-feedback-comment:focus { border-color: #777; outline: 2px solid rgba(0,0,0,.08); }
.gm-exit-feedback-submit {
    margin-top: 12px;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    padding: 10px 18px;
    background: #171717;
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}
.gm-exit-feedback-submit:hover,
.gm-exit-feedback-submit:focus { opacity: .88; outline: none; }
.gm-exit-feedback-thanks { padding: 18px 0 4px; color: #444; }
@media (max-width: 700px) {
    .gm-exit-feedback-overlay { padding: 12px; align-items: flex-end; }
    .gm-exit-feedback-dialog { border-radius: 16px 16px 0 0; padding: 24px 20px; }
}
