/* styles.css */

/* Overlay (black-ish background) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Black with opacity */
    display: none; /* Initially hidden */
    z-index: 999;
}

/* Popup box */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    /* padding: 45px; */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: none; /* Initially hidden */
    z-index: 1000;
}

.content-container {
    text-align: center;
    padding: 20px;
}

.close-icon {
    position: absolute;
    top: 10px;
    inset-inline-end: 15px;
    cursor: pointer;
	width: 25px;
    height: 25px;
    font-size: 25px;
    color: #000;
}

/* Close button */
.close-btn {
    /* padding: 10px 20px; */
    /* border: none; */
    /* background-color: #007bff; */
    /* color: white; */
    /* cursor: pointer; */
    /* font-size: 16px; */
    /* border-radius: 5px; */
    display: block;
    margin: 0 auto;
}

.close-btn:hover {
    background-color: #0056b3;
}

