/* Full-screen overlay */
.popup-overlay {
	display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(69, 5, 41, 0.7); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup box */
.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
	width:70%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: rgba(69, 5, 41, 0.9);

}

/* Styling for text */

.popup-content p {
    font-size: 16px;
		font-family: 'Quicksand', sans-serif;
	color: rgba(69, 5, 41, 0.9);
}
