/* deactivation.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

#ext-ie-deactivation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.ext-ie-deact-modal {
    background: #fff;
    width: 600px;
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.ext-ie-deact-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ext-ie-deact-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
}

.ext-ie-deact-close {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    line-height: 1;
}

.ext-ie-deact-body {
    padding: 24px;
    overflow-y: auto;
}

.ext-ie-reason-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.ext-ie-reason-card {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
}
.ext-ie-reason-card:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}
.ext-ie-reason-card.selected {
    border-color: #6366f1;
    background: #eef2ff;
}

.ext-ie-reason-icon {
    width: 24px;
    height: 24px;
    background: #f1f5f9;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #475569;
}

.ext-ie-reason-text {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.ext-ie-message-box {
    display: none;
    margin-bottom: 24px;
}
.ext-ie-message-box textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
}

.ext-ie-consent-box {
    background: #f8fafc;
    padding: 16px;
    border-radius: 6px;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}
.ext-ie-consent-box p {
    margin: 0 0 12px 0;
}
.ext-ie-consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 500;
    color: #1e293b;
    cursor: pointer;
}
.ext-ie-consent-checkbox input {
    margin-top: 2px;
}

.ext-ie-deact-footer {
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-radius: 0 0 8px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ext-ie-btn-skip {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}
.ext-ie-btn-skip:hover {
    color: #64748b;
}

.ext-ie-btn-submit {
    background: #e2e8f0;
    color: #94a3b8;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: not-allowed;
    transition: all 0.2s;
}
.ext-ie-btn-submit.active {
    background: #6366f1;
    color: #fff;
    cursor: pointer;
}
.ext-ie-btn-submit.active:hover {
    background: #4f46e5;
}
