/* Deactivation Feedback Popup Styling */
.authyo-passwordless-deactivation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 999998;
    display: none;
}

.authyo-passwordless-deactivation-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    max-width: 90%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 999999;
    display: none;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.authyo-passwordless-deactivation-header {
    background: #f8fafc;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.authyo-passwordless-deactivation-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.authyo-passwordless-deactivation-body {
    padding: 24px;
}

.authyo-passwordless-deactivation-question {
    font-size: 15px;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 20px;
}

.authyo-passwordless-deactivation-reasons {
    margin-bottom: 20px;
}

.authyo-passwordless-deactivation-reason {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.authyo-passwordless-deactivation-reason input {
    margin-right: 12px;
    width: 18px;
    height: 18px;
}

.authyo-passwordless-deactivation-reason span {
    font-size: 14px;
    color: #334155;
}

.authyo-passwordless-deactivation-details {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 10px;
    display: none;
    resize: vertical;
}

.authyo-passwordless-deactivation-footer {
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.authyo-passwordless-deactivation-submit {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.authyo-passwordless-deactivation-submit:hover {
    background: #1d4ed8;
}

.authyo-passwordless-deactivation-submit:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

.authyo-passwordless-deactivation-skip {
    color: #64748b;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.authyo-passwordless-deactivation-skip:hover {
    color: #475569;
}
