/* Deactivation Feedback Modal */
.quicker-deactivation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quicker-deactivation-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.quicker-deactivation-modal-content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    width: 520px;
    max-width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.quicker-deactivation-modal-header {
    padding: 24px 24px 0;
}

.quicker-deactivation-modal-header h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #1d2327;
}

.quicker-deactivation-modal-header p {
    margin: 0;
    font-size: 13px;
    color: #50575e;
}

.quicker-deactivation-modal-body {
    padding: 16px 24px;
}

.quicker-deactivation-reasons {
    list-style: none;
    margin: 0;
    padding: 0;
}

.quicker-deactivation-reasons li {
    margin-bottom: 4px;
}

.quicker-deactivation-reasons label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
    font-size: 13px;
    color: #1d2327;
}

.quicker-deactivation-reasons label:hover {
    background: #f0f0f1;
}

.quicker-deactivation-reasons input[type="radio"] {
    margin: 0;
    flex-shrink: 0;
}

.quicker-deactivation-detail {
    width: calc(100% - 32px);
    margin: 6px 0 4px 32px;
    padding: 8px 10px;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    font-size: 13px;
    transition: border-color 0.15s;
}

.quicker-deactivation-detail:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 1px #2271b1;
}

.quicker-deactivation-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid #e0e0e0;
}

.quicker-deactivation-modal-footer .button {
    min-width: 120px;
    text-align: center;
}

.quicker-deactivation-skip {
    color: #50575e !important;
}
