/* Blur effect for entire site */
body.wp-idv-blur {
    overflow: hidden;
}

body.wp-idv-blur > *:not(#wp-idv-blur-overlay) {
    filter: blur(10px);
    pointer-events: none;
    user-select: none;
}

/* Overlay styles */
#wp-idv-blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.wp-idv-overlay-content {
    padding: 20px;
    max-width: 500px;
    width: 100%;
}

.wp-idv-modal {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: wpIdvFadeIn 0.3s ease-out;
}

@keyframes wpIdvFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wp-idv-modal-icon {
    color: #2271b1;
    margin-bottom: 20px;
}

.wp-idv-modal h2 {
    margin: 0 0 15px 0;
    font-size: 28px;
    color: #1e1e1e;
    font-weight: 600;
}

.wp-idv-modal p {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.wp-idv-subtitle {
    font-size: 14px !important;
    color: #757575 !important;
    margin-bottom: 30px !important;
}

.wp-idv-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.wp-idv-btn {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.wp-idv-btn-primary {
    background: #2271b1;
    color: #ffffff;
}

.wp-idv-btn-primary:hover {
    background: #135e96;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

.wp-idv-btn-secondary {
    background: #f0f0f1;
    color: #2c3338;
}

.wp-idv-btn-secondary:hover {
    background: #dcdcde;
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 600px) {
    .wp-idv-modal {
        padding: 30px 20px;
    }
    
    .wp-idv-modal h2 {
        font-size: 24px;
    }
    
    .wp-idv-buttons {
        flex-direction: column;
    }
    
    .wp-idv-btn {
        width: 100%;
    }
}

