.popup-wrapper {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease; 
}

.popup-wrapper.show {
    display: flex; 
    opacity: 1; 
}

#confirmationForm{
    display: flex;
    justify-content: space-evenly;
}

.popup-form h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.popup-form p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.popup-form label {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.popup-container {
	background: white;
	padding: 20px;
	max-width: 600px;
	text-align: left;
	position: relative;
	border-radius: 5px;
	transform: scale(0.8); 
    transition: transform 0.5s ease; /
}

.popup-container button{
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.popup-close {
	position: absolute;
	top: 10px;
	right: 15px;
	text-decoration: none;
	font-weight: bold;
	color: black;
	cursor: pointer;
}


.popup-wrapper.show .popup-container {
    transform: scale(1); 
}