body {
    padding: 10px;
    background-color: #333;
    font-family: "Roboto", sans-serif;
}

.section {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    width: 100%;
    gap: 3px;
    margin: 0 auto;
    padding-bottom: 200px;
}

.resultBox {
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.text {
    color: #fff;
    text-align: center;
    font-size: 30px;
    padding: 0;
    margin: 0;
    line-height: 1.1
}

.text span {
    font-size: 20px;
}

button {
    height: calc(70vh / 10);
    background-color: #9c7300;
    border: none;
    color: #fff;
    font-size: 30px;
    border-radius: 10px;
    cursor: pointer;
    min-height: 40px;
    max-height: 100px;
}

label {
    font-size: 16px;
    color: #fff;
}

input {
    max-width: 50px;
    padding: 5px;
    border-radius: 10px;
    font-size: 16px;
}

.long {
    max-width: 80px;
}

table {
    border-collapse: collapse;
    width: 100%;
    max-width: 720px;
    background: #adadad;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    margin: 20px 0 20px;
}

th,
td {
    padding: 10px 12px;
    border-bottom: 1px solid #e6e6e6;
    text-align: left;
}

th {
    font-weight: 600;
}

caption {
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.mono {
    font-family: "Courier New", monospace;
}

button:hover {
    filter: brightness(120%);
}