/* CSS for the registration modal */
#registration-modal { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#registration-modal .modal-content {
    overflow: hidden;
    margin: 60px auto;
    background: #fff;
    padding: 0 10px 10px 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Additional style if you need the form itself centered within the modal content */
#registration-modal form {
    display: flex;
    flex-direction: column;
}
