/* Inter font is loaded via Google Fonts */
#elpd-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    cursor: default; /* Changed from auto to default for better visibility */
}

#elpd-popup-container {
    background: #ffffff;
    max-width: 520px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: elpdFadeIn 0.2s ease-out;
    cursor: default; /* Ensure container uses default cursor */
}

@keyframes elpdFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

#elpd-popup-content {
    padding: 28px 30px 32px;
    cursor: default; /* Content area uses default cursor */
}

#elpd-popup-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #003b65; /* Updated to #003b65 */
    line-height: 1.3;
}

#elpd-popup-body {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #003b65; /* Updated to #003b65 */
    margin-bottom: 28px;
}

#elpd-popup-body p {
    margin: 0 0 14px 0;
    font-family: 'Inter', sans-serif;
    color: #003b65; /* Updated to #003b65 */
}

#elpd-popup-body p:last-child {
    margin-bottom: 0;
}

#elpd-popup-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 8px;
}

.elpd-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 30px;
    border: none;
    cursor: pointer; /* Buttons should show pointer cursor */
    transition: all 0.2s ease;
}

#elpd-go-back,
#elpd-proceed {
    background-color: #f0bd2d;
    color: #003b65;
}

#elpd-go-back:hover,
#elpd-proceed:hover {
    background-color: #003b65;
    color: #f0bd2d;
    cursor: pointer; /* Ensure cursor changes to pointer on hover */
}

/* Ensure text cursor appears properly over text content */
#elpd-popup-title,
#elpd-popup-body,
#elpd-popup-body * {
    cursor: text; /* Shows text selection cursor over text */
}

/* Make sure the cursor is visible on the overlay background */
#elpd-popup-overlay {
    cursor: default;
}

/* Optional: Add a subtle pointer for clickable close area */
#elpd-popup-overlay {
    cursor: pointer; /* Makes entire overlay clickable with pointer cursor */
}

/* But override for the popup container itself - not clickable for closing */
#elpd-popup-container {
    cursor: default;
}

/* Make the popup container area not trigger the close action */
#elpd-popup-container:hover {
    cursor: default;
}