/* Styles for printing */

/* Hide navigation */
nav {
    display: none;
}

/* Hide footer */
footer {
    display: none;
}

/* Adjust font size and color */
body {
    font-size: 14px;
    color: #000; /* Black text */
}

/* Adjust margins */
@page {
    margin: 1cm;
}

/* Adjust heading sizes */
h1, h2, h3 {
    font-size: 20px;
}

/* Hide form labels */
label {
    display: none;
}

/* Hide form input borders */
input, textarea {
    border: none;
}

/* Hide checkboxes and radio buttons */
input[type="checkbox"], input[type="radio"] {
    display: none;
}

/* Display checkbox labels */
.checkbox-group label {
    display: inline-block;
    margin-right: 10px;
}