.modal-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999;
}

.modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000000;
    width: 80%;
    max-width: 750px;
    max-height: 70%;
    overflow-y: auto;
}

.modal-close-button {
    position: absolute;
    top: 5px;
    right: -10px;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    z-index: 1000000;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.0);
}

.modal-text-container {
    padding: 20px;
    width: 100%;
    max-height: 70%;
    min-height: 300px;
}