/* I tried the class .modal but it conflicts with bootstraps .modal class */
.supermodal {
    display: grid;
    place-items: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 130;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    padding: 10px;
    
}

.supermodal .modalcontainer {
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    /* overflow: auto; */
    min-width: 48vw;
    max-width: 80vw;
    max-height: 80vh;
    overflow: auto;
    
}

.supermodalheader {
    display: flex;
    justify-content: space-between;
    width: inherit;
    align-items: center;
}

.content-centered, .center-content {
    display: grid;
    place-items: center;
    text-align: center;
}