/* Styling the full-screen dark background */
#custom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dimmed background */
    z-index: 9999; /* Ensures it sits on top of everything */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Styling the white box in the center */
.popup-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    max-width: 930px;
    width: 90%;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    font-family: sans-serif;
}

.popup-box h2 {
    margin-top: 0;
    color: #333;
}

.popup-box p {
    color: #666;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 20px;
}

.popup-box ul {
    text-align: left;
}

/* Styling the button */
#close-popup-btn {
    background-color: #89BA13;
    color: white;
    border: none;
    padding: 10px 20px;
	margin: auto;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

#close-popup-btn:hover {
    background-color: #568701;
}


