body {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family:-apple-system,BlinkMacSystemFont,segoe ui,Roboto,Oxygen,Ubuntu,Cantarell,open sans,helvetica neue,sans-serif;
}
.top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 40vh;
    border-bottom: 1px dotted black;
}
.input-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}
.input-group {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.bottom {
    display: flex;
    align-items: stretch;
    border-top: 1px dotted black;
    border-bottom: 1px dotted black;
}
h2 {
    text-align: center;
}
.left, .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5vh;
    position: relative;
    box-sizing: border-box;
    align-items: stretch;
    text-align: center;
}
.left h3, .right h3 {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}
.info-left, .info-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5vh;
    position: relative;
    box-sizing: border-box;
    align-items: stretch;
}
.info-left h3, .info-right h3 {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}
.data-container {
    text-align: center;
    width: 100%;
}
p{
    margin-top: 0;
  }
#input_terminators {
    width: 30vw;
}
.back-link {
    position: absolute;
    top: 1vw;
    left: 1vw;
    font-size: 1rem;
}
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 1vh;
    margin: 0 auto;
}
th {
    text-align: center;
}
tr:nth-child(even) {
    background-color: #ededed;
}
button {
    margin-left: 1vw;
}
label {
    margin-right: 1vw;
}
.vl {
    border-left: 1px dotted black;
}
@media (max-width: 768px) {
    .top {
        padding: 1rem;
    }
    .top h1 {
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }
    .bottom {
        flex-direction: column;
    }
    .left, .right {
        padding: 5vh;
        border-right: none;
        border-bottom: 1px dotted black;
    }
    .info-left, .info-right {
        padding: 5vh;
        border-right: none;
        border-bottom: 1px dotted black;
    }
    .info-right {
        border-bottom: none;
    }
    #input_terminators {
        width: 80vw;
    }
}