.main_modal_wrapper {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgb(12 74 110 / 0.8);
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    z-index: 50;
    animation: fadein 0.3s;
}

.main_modal_content {
    background-color: white;
    min-width: 50vw;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
}
