.custom-modal {
display: none;
position: fixed;
z-index: 10000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.4);
opacity: 0;
transition: opacity 0.5s;
border-color: rgba(186, 186, 186, 0.75);
color: rgb(186, 186, 186);
visibility: visible;
color: #444;
}
.custom-modal.show {
opacity: 1;
display: block;
}
.custom-modal-content {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 10px;
border-radius: 5px;
width: 95%;
max-width: 600px;
box-sizing: border-box;
}
#close-modal-button {
position: absolute;
top: 10px;
right: 15px;
border: none;
background: transparent;
font-size: 40px;
cursor: pointer;
color: #333;
}