.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
}
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--popup-bg);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px var(--shadow-medium);
    z-index: 10000;
    text-align: center;
    min-width: 300px;
}
.popup h2 {
    margin-top: 0;
}
.popup .close-icon{
    position: absolute;
    right: -14px;
    top: -17px;
    padding: 3px;
    background: var(--popup-bg);
    border-radius: 50%;
    width: 30px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 0 2px var(--popup-shadow);
    color: var(--popup-close-color);
    cursor:pointer;
}
.popup-container .popup p {
    color: var(--popup-text);
}
/* Add this if you added the message next to the submit button */
.send-btn p {
    color: var(--danger-color); 
    font-size: 14px; 
    margin-left: 10px;
}
