/* style/style.css */

body {
    user-select: none; /* Voorkom selectie op de hele pagina */
}

#result {
    user-select: text; /* Alleen deze div is selecteerbaar */
}*/

.custom-button {
  transition: all 0.3s ease;
}

#result, .pdfbutton {
  max-width: 800px;
  margin: 0 auto;
}
.pdfbutton {
	padding-right:50px;
}
#result table {
    width: 100%;
    table-layout: fixed;
}

#result th, #result td {
    word-wrap: break-word;
}

/* Optioneel: Verbeter de opmaak voor printmedia */
@media print {
    body {
        background: none;
    }
    #downloadPdfButton {
        display: none;
    }
    #result {
        width: 210mm; /* A4 breedte */
    }
}



pre {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    padding: 10px;
    overflow: auto;
}
.error {
    color: red;
    background-color: #f8d7da;
    padding: 10px;
    border: 1px solid red;
}

tr .gray {
	background-color: #efefef;
	color: #959595;
}
td span {
	font-size: 11px;
    color: #a7a7a7;
}
