body {
    font-family: Arial, sans-serif;
}

.title {
    font-size: 2em;
    font-weight: bold;
    padding: 1em 1em;
}

.subtitle {
    font-size: 1.5em;
    font-weight: bold;
    padding-bottom: 0.5em;
}

input:disabled {
    cursor: not-allowed;
}

input[type=range] {
    width: 100%;
    cursor: pointer;
}

input[type=number] {
    cursor: text;
    text-align: center;
    appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.slider-title {
    font-weight: bold;
    padding-bottom: 0.5em;
}

.slider-labels {
    width: 24em;
    display: flex;
    justify-content: space-between;
}

button {
    width: 24em;
    padding: 0.5em 1em;
    font-size: 1em;
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
}

select {
    width: 24em;
    padding: 0.5em 1em;
    font-size: 1em;
    cursor: pointer;
}

select option {
    width: 24em;
    padding: 0.5em 1em;
    font-size: 1em;
    cursor: pointer;
}

.js-plotly-plot {
    width: 47em;
    height: 40em;
    margin: -2em -2em -2em -1em;
}

table {
    box-sizing: border-box;
    border-collapse: collapse;
    text-align: center;
    vertical-align: middle;
}

table.fixed {
    width: 24em;
}

table th, table td {
    border: 1px solid #ccc;
    padding: 0.5em 0.5em;
}

table th {
    background-color: #f0f0f0;
}

table td label, input {
    cursor: pointer;
}

.vertical {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.horizontal {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}

.singleton {
    display: flex;
    flex-direction: column;
    padding: 1em;
    /*border: 1px solid black;*/
}

.scroll-box {
    display: flex;
    flex-direction: column;
    margin: 1em;
    max-height: 24em;
    overflow-y: auto;
    overflow-x: hidden;
}

.info-box {
    box-sizing: border-box;
    width: 24em;
    line-height: 1.5em;
    border: 1px solid #add8e6;
    border-radius: 6px;
    background-color: #f0f8ff;
    padding: 1em;
}