body, p, td {
    font-family: "Arial", sans-serif;
    background: white;
}

.main-header {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

.red-header {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    color: #b4141e;
    margin-top: 10px;
}

.black-header {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    color: #000000;
    margin-top: 10px;
}

.overview {
    border-collapse: collapse;
}


.overview td {
    padding: 0;
}

.overview select {
    visibility: hidden;
}

.overview .date-select {
    visibility: visible;
}

.qborder {
    border: 1px solid #000000;
    page-break-inside: avoid;
}

.qborder td {
    border: 1px solid #000000;
}

.section {
    border-collapse: collapse;
    width: 100%;
    page-break-inside: avoid;
}

.section td {
    padding: 5px;
    font-size: 12px;
}

.comment {
    padding: 0;
}

.comment textarea {
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    border: none;
    font-family: "Arial", sans-serif;
}

.question-text {
    width: 40%;
}

/* Hide the default checkbox */
.custom-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox within the table cell */
.checkbox-container {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Style the checkmark */
.checkbox-container .checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: transparent; /* Initially invisible */
    border-radius: 50%; /* Make it circular */
    transform: translate(-50%, -50%); /* Center the checkmark */
    cursor: pointer;
}

/* When the checkbox is checked, display the black circle */
.custom-checkbox:checked + .checkmark {
    background-color: black;
}

.color-blue {
    color: blue;
}

.color-orange {
    color: orange;
}

.color-green {
    color: green;
}

.overview-label {
    width: 20%;
}

input[type="text"] {
    font-family: "Arial", sans-serif;
    font-size: 16px;
}