/* --- Popup Overlay --- */
#eov-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

#eov-popup-overlay.eov-hidden {
    opacity: 0;
    pointer-events: none;
}

/* --- Popup Container --- */
#eov-popup-container {
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

#eov-popup-container h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
    color: #333;
}

#eov-popup-container p {
    margin-bottom: 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

/* --- Form Elements --- */
#eov-otp-input {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    text-align: center;
    letter-spacing: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

#eov-otp-input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 1px #0073aa;
}

#eov-verify-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#eov-verify-btn:hover:not(:disabled) {
    background-color: #005a87;
}

#eov-verify-btn:disabled {
    background-color: #a0a5aa;
    cursor: not-allowed;
}


/* --- Messages and Actions --- */
#eov-popup-message {
    min-height: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.eov-message-loading { color: #555; }
.eov-message-error { color: #d63638; }
.eov-message-success { color: #2271b1; }
.eov-message-success-final { color: #00a32a; font-weight: bold; }

.eov-actions {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

#eov-resend-otp {
    color: #0073aa;
    text-decoration: none;
}

#eov-resend-otp:hover {
    text-decoration: underline;
}

#eov-resend-otp.disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: none;
}

#eov-resend-timer {
    margin-left: 5px;
    color: #777;
}

/* --- Close Button --- */
#eov-close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #aaa;
    cursor: pointer;
}

#eov-close-btn:hover {
    color: #333;
}
