/* Deactivation Feedback Popup Styles */
.authyo-mf-deactivation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999998;
    backdrop-filter: blur(3px);
}

.authyo-mf-deactivation-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 90%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 999999;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.authyo-mf-deactivation-header {
    background: #f8f9fa;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.authyo-mf-deactivation-header h2 {
    margin: 0;
    font-size: 18px;
    color: #1d2327;
    font-weight: 600;
}

.authyo-mf-deactivation-body {
    padding: 25px;
}

.authyo-mf-deactivation-question {
    font-size: 15px;
    color: #2c3338;
    margin-bottom: 20px;
    line-height: 1.5;
}

.authyo-mf-deactivation-reasons {
    list-style: none;
    margin: 0;
    padding: 0;
}

.authyo-mf-deactivation-reason {
    margin-bottom: 12px;
}

.authyo-mf-deactivation-reason label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #50575e;
}

.authyo-mf-deactivation-reason input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    border: 1px solid #8c8f94;
    box-shadow: none;
    background: #fff;
    cursor: pointer;
}

.authyo-mf-deactivation-reason input[type="radio"]:checked:before {
    width: 8px;
    height: 8px;
    margin: 4px;
    background-color: #2271b1;
}

.authyo-mf-deactivation-other {
    margin-top: 15px;
    display: none;
}

.authyo-mf-deactivation-other textarea {
    width: 100%;
    height: 80px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    resize: none;
}

.authyo-mf-deactivation-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.authyo-mf-deactivation-footer .button {
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.authyo-mf-deactivation-skip {
    color: #646970;
    text-decoration: none;
}

.authyo-mf-deactivation-skip:hover {
    color: #1d2327;
}

.authyo-mf-deactivation-submit {
    background: #2271b1;
    border: 1px solid #2271b1;
    color: #fff;
}

.authyo-mf-deactivation-submit:hover {
    background: #135e96;
    border-color: #135e96;
    color: #fff;
}

.authyo-mf-deactivation-submit:disabled {
    background: #a7aaad;
    border-color: #a7aaad;
    cursor: not-allowed;
}

.authyo-mf-deactivation-thank-you {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.authyo-mf-deactivation-thank-you .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #46b450;
    margin-bottom: 20px;
}

.authyo-mf-deactivation-thank-you p {
    font-size: 18px;
    font-weight: 600;
    color: #1d2327;
}
