:root {
    --background-color: #F6F2EF;
}

body {
    background-color: var(--background-color);
}

.btn-container {
    margin: 2px;
}

.generation-block {
    display: flex;
    align-items: center;
}

.generation-textarea {
    min-width: 100%;
    height: 10vh;
    min-height: 120px;
}

.generation-input-list {
    height: 50vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

.info-popup {
    position: fixed;
    width: 500px;
    border: 1px solid black;
    right: 0;
    overflow-y: scroll;
    z-index: 1;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #F6F2EF;
    top: 71px;
    bottom: 0;
    font-size: small;
}

.right-span {
    max-width: 25%;
    right: 0;
}

table, th, td {
    border: 1px solid;
    border-collapse: collapse;
    background-color: white;
    margin-left: 1rem;
    padding-left: 3px;
    font-size: small;
}

textarea {
    max-width: 30%;
}

