#modal {
    display: none; /* Initially hidden */
    position: fixed;
    inset: 0;
    z-index: 1000; /* High z-index to ensure it's on top */
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

#modal .modal-content {
    padding: 2rem;
    border-radius: 0.5rem;
 
}

.blur {
    filter: blur(5px);
}
