body {
    
    background-size: cover;
    background-attachment: fixed;
    font-family: ABC Repro, Helvetica Neue, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.black-translucid-glass-modal {
    position: fixed; 
    z-index: 10000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.4); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.black-translucid-glass-modal.show {
    opacity: 1;
    
    
}

.modal-content {
    background-color: #fefefe; 
    margin: auto; 
    padding: 20px; 
    border: 1px solid #888; 
    width: 80%; 
    max-width: 500px; 
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    transform: translateY(-30px); /* Start with translateY -30px */
    transition: transform 0.3s ease-in-out; /* Transition for transform */
}

.modal.show .modal-content {
    transform: translateY(0); /* When .show is added, translateY becomes 0 */
}

.close-modal {
    font-size: 1.5rem; /* Increase the size */
    color: gray; /* Set the color to match the alert theme */
    cursor: pointer; /* Change cursor to pointer */
    position: absolute; /* Position it absolutely */
    top: -3px; /* Adjust the position */
    right: 7px; /* Adjust the position */
    transition: color 0.3s ease, transform 0.3s ease; /* Add transition for smooth effects */
}

.close-modal:hover {
    color: #c9302c; /* Change color on hover */
    transform: scale(1.2); /* Slightly increase the size on hover */
}



