﻿
.Bp_popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* darker overlay for better contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.Bp_popup-box {
    max-width: 400px;
    width: 90%;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    /* rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    /* more prominent shadow */
    z-index: 1001;
    position: relative;
    font-family: Arial, sans-serif;
    /* standard font */
    font-size: 0.8em;
}

    .Bp_popup-box h2 {
        margin-top: 0;
        color: #003366;
        /* header color */
        border-bottom: 2px solid #003366;
        /* underline for the header */
        padding-bottom: 10px;
        font-size: 1.5em;
    }

    .Bp_popup-box p {
        font-size: 1em;
        color: #333;
        /* readable text color */
        line-height: 1.6;
        /* space out the lines for readability */
        margin-top: 10px;
    }

.Bp_popup_close-btn {
    position: absolute;
    top: -10px;
    /* Adjusted position */
    right: -10px;
    background-color: #ff5c5c;
    /* red color for visibility */
    color: white;
    /* white text color */
    border: none;
    /* no border */
    border-radius: 50%;
    /* circle shape */
    width: 30px;
    /* fixed width */
    height: 30px;
    /* fixed height */
    font-weight: bold;
    /* bold text */
    text-align: center;
    line-height: 30px;
    /* vertically center the text */
    cursor: pointer;
}

    .Bp_popup_close-btn:hover {
        background-color: #ff4040;
        /* darker red on hover for feedback */
    }
