/* Popup Overlay */
#ease-forms-deactivation-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
    box-sizing: border-box;
}

/* Popup Content */
.ease-forms-popup-content {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Close Button */
.ease-forms-close-popup-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    border: none;
    background: none;
    cursor: pointer;
}

/* Heading & Subheading */
.ease-forms-popup-heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.ease-forms-popup-subheading {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Radio Options */
.ease-forms-radio-options label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.ease-forms-radio-options input {
    margin-right: 10px;
}

/* Other Reason Box */
#ease-forms-other-reason-box textarea {
    width: 100%;
    height: 60px;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: none;
}

/* Buttons */
.ease-forms-popup-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.ease-forms-btn-submit,
.ease-forms-btn-skip {
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 48%;
}

.ease-forms-btn-submit {
    background: #5a67d8;
    color: #ffffff;
}

.ease-forms-btn-submit:hover {
    background: #4c51bf;
}

.ease-forms-btn-skip {
    background: #e2e8f0;
    color: #333;
}

.ease-forms-btn-skip:hover {
    background: #cbd5e0;
}

.deactivating-message {
    font-size: 18px !important;
    font-weight: bold !important;
    text-align: center !important;
    padding: 20px !important;
    color: #0073aa !important;
}