body {
    font-size: 12px;
    font-family: Arial, sans-serif;
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
}

.section {
    padding: 15px;
    background-color: #f4f4f4;
    border: 1px solid #777;
    border-top: 0;
    text-shadow: 0 1px 1px #fff;
}

.section:nth-child(even) {
    background-color: #fefefe;
}

.section:last-child {
    border-bottom: 0;
}

.section-title {
    font-weight: bold;
    font-size: 14px;
    text-shadow: 0 1px 1px #fff;
    margin-bottom: 10px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    margin-bottom: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.checkbox-item label {
    color: #888;
}

.checkbox-item input[type="checkbox"]:checked + label {
    color: #000;
}

.checkbox-item input[type="checkbox"] {
    transform: scale(1.3);
}

.input-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 5px;
    margin-bottom: 10px;
}

.input-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-item input {
    padding: 6px;
    border: 1px solid #1DB954;
    font-size: 12px;
    border-radius: 3px;
    box-shadow: 0 -1px 0 #1DB954 inset;
    background: #defade;
    text-shadow: 0 1px 0 #fff;
    text-transform: uppercase;
}

.input-item input:placeholder-shown {
    color: #777;
    border: 1px solid #777;
    box-shadow: none;
    background: #fff;
}

.input-item input:focus {
    outline: none;
    border: 1px solid #000;
    box-shadow: 0 -1px 0 #000 inset;
    background: #fff;
}

.checklist-section label {
    color: red;
    font-weight: bold;
}

.checklist-section input[type="checkbox"]:checked + label {
    color: green;
    font-weight: normal;
}

#dispwarning, #neurowarning, #scvwarning, #srwarning, #tgiwarning, #rmwarning, #hiwarning, #extwarning {
    font-weight: bold;
}
       
#output {
    width: 100%;
    height: 200px;
    border: 1px solid #777;
    font-family: monospace;
    font-size: 12px;
    background-color: #f9f9f9;
    resize: vertical;
}

button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #777;
}