body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
    -webkit-print-color-adjust:exact !important;
    print-color-adjust:exact !important;
  }
  
  #container {
    margin: 10px;
    background-color: #fff;
    padding: 20px;
  }
  
  
  p {
    text-align: left;
    font-size: 18px;
    margin-top: 20px;
  }
  
  .logout-link {
    text-align: center;
    margin-top: 20px;
  }
  
  .logout-link a {
    color: #007bff;
    text-decoration: none;
  }
  
  .logout-link a:hover {
    text-decoration: underline;
  }

  
.menu {
  margin: 20px 10px; /* Center de menu-container */
  display: flex; /* Geef de container een flexbox-layout */
  justify-content: left; /* Centreer de menu-items horizontaal */
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  margin-right: 20px;
}

.menu a {
  text-decoration: none;
  background-color: #830603;
  color: #fff;
  padding: 8px 16px;
  margin: 2px;
  height: 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
  display: block;
}

.menu a:hover {
  background-color: #e30613;
  color: #fff;
}

/* ... Andere CSS-regels ... */

.topnav {
  overflow: hidden;
  background-color: #1d1d1b;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #e30613;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

.hidden
{
  display: none !important;
}

.logincontainer {
  max-width: 400px;
  margin: 100px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sectionheader
{
  text-align: center !important;
  background-color: #c79e00 !important;
  font-size: 18px;
  margin-top: 20px;
  padding: 10px;
  font-weight: bold;
}

h2 {
  text-align: center;
}

.logininput {
  display: block;
  width: 100% !important;
  margin-bottom: 10px;
}

textarea {
  height: 200px;
  width: 100%;
}


.logo
{
  max-width: 100px;
}

.section
{
  text-align: left;
  margin-top: 20px;
}

#report {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}


#report td, #report th {
  border: 1px solid #ddd;
  padding: 8px;
}

#report td:nth-child(1) {
  width: 10%;
}

#report td:nth-child(2) {
  width: 40%;
}

#report td:nth-child(3) {
  width: 50%;
}

#report tr:nth-child(even){background-color: #f2f2f2;}

#report tr:hover {background-color: #ddd;}

#report th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #888;
  color: white;
}

.content
{
  padding: 16px;
}

.sectionth
{
  text-align: center !important;
  background-color: #c79e00 !important;
}


/* pseudo content inside t-bodys space them away from their previous sibling */
.seperaterow {
	content: "";
	height: 26px;
	display: table-row;
	/* Be warned that this pseudo content spans the whole table width in Firefox, but not in Chrome. Uncomment the background rule to see: */
	/* background: pink; */
}

@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}

#logo
{
  text-align: center;
  margin-top: 40px;
  @media print
  {    
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

#reportQuestionSelect
{
  font-size: 18px;
  width : 100%;
}

#reportSectionShow
{
  font-size: 22px;
  width : 100%;
  margin-top: 20px;
  @media print
  {    
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

#reportQuestionShow
{
  font-size: 18px;
  width : 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

#reporttitle
{
  @media print
  {    
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

.toggle {
    height: 40px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  margin: 26px 0 0 0;
}

.toggle label
{
    padding: 10px;
}

.toggle input + label {
  background-color: #999;
}


.toggle input:checked + label {
  background-color: #0A0;
}

.questions p {
    margin-bottom: 5px;
}

.loginsubmit {
  background-color: #007bff;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 45%;
}

.loginsubmit:hover {
  background-color: #0056b3;
}

.recoverysubmit {
  background-color: #ff0000;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 45%;
}

.recoverysubmit:hover {
  background-color: #b30000;
}

.loginmessage
{
  text-align: center;
  color: red;
}

.textquestion {
    width: 100%;
}

#footer {
  position: fixed ;
  left: 0 ;
  width: 100%;
  bottom: 0 ;
  z-index: 1;
  text-align: center;
  background-color: #ffffff;
  height: 0px;
}

#questionListProgress
{
  width: 95%;
  position: relative;
}

.animated-progress {
  height: 30px;
  border-radius: 5px;
  margin: 20px 10px;
  border: 1px solid #000;
  overflow: hidden;
  position: relative;
}

.animated-progress span {
  height: 100%;
  display: block;
  width: 0;
  color: rgb(255, 251, 251);
  background-color: #c79e00 ;
  line-height: 30px;
  position: absolute;
  text-align: center;
  padding-right: 5px;
}

#questionlistsavebutton
{
  background-color: #0A0;
  color: #fff;
  height: 40px; 
}

#questionlistfinalbutton
{
  background-color: #830603;
  color: #fff;
  height: 40px; 
  margin-left: 10px;
}

input[type="text" i]
{
  width: 600px;
}

.red
{
  color: #ff0000;
}