*{margin:4px;padding:2px;}
body {
	width: 100%;
    position: center;       
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    text-align: center;
}

/* CSS */
.messagebar {
  color:red;
}
.register {
    width: 400px;
    background-color: #ffffff;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    margin: 100px auto;
}
.register h1 {
    text-align: center;
    background-color: #81047b;
	  color: white;
    font-size: 24px;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #dee0e4;
}
.register form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}
.register form label {
    display: flex;
    justify-content: center;
    align-items: center;
    width:30px;
    height: 30px;
    background-color: #81047b;
    color: #ffffff;
}
.register form input[type="password"], .register form input[type="text"], .register form input[type="email"], .register form input[type="checkbox"] {
    width: 310px;
    height: 30px;
    border: 1px solid #dee0e4;
    margin-bottom: 10px;
    padding: 0 15px;
}
.register form input[type="submit"] {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background-color: #81047b;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
}
.register form input[type="submit"]:hover {
  background-color: #2868c7;
   transition: background-color 0.2s;
}
.register form input[type="checkbox"] {
            height: 29px;
            width: 20px;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-color: #e0e0e0;
            border: 1px solid #ccc;
            border-radius: 3px;
            cursor: pointer;
            position: relative;
            /*margin: 10px;*/
}
        /* Change the background color when checkbox is checked */
.register form input[type="checkbox"]:checked {
            background-color: #81047b;
            border: 1px solid #81047b;
        }
        /* Add a check mark when checked */
.register form input[type="checkbox"]:checked::after {
            content: "";
            position: absolute;
            left: 9px;
            top: 4px;
            width: 6px;
            height: 12px;
            border-width: 0 3px 3px 0;
            transform: rotate(45deg);
            border-color: white;
            border-style: solid;
        }
.register form select {
	width: 310px;
	height: 50px;
  border: 1px solid #dee0e4;
  margin-bottom: 20px;
  padding: 0 15px;
}
.button1 {
  background-color: #81047b; 
  border: none;
  border-radius: 4px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  border-radius: 4px;
  cursor: pointer;
  transition-duration: 0.4s;
  width: 100%;
}
.button1:hover {
  background-color: #669EE2; /* blauw */
  color: white;
}
select {
  appearance: none; /* Verwijdert standaard browserstijl */
  -webkit-appearance: none; /* Voor Safari */
  -moz-appearance: none; /* Voor Firefox */
  background: white url('dropdown-icon.svg') no-repeat right 10px center;
  padding: 5px 40px 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  color: black
}

hr {
  height: 4px;
  border-width: 0;
  background-color: #363795;
  color: #4ec78b;
}
a {
	display: block;
	border-radius:8px;
	text-decoration: none;	
}
tr:nth-child(even) { 
  background-color: AliceBlue;
}
tr:nth-child(odd) { 
  background-color: white;
}

.footer {
	background-color:#81047b;
	color: white;
	font-weight: 400;
}
.listbutton {
  color: black;
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  transition-duration: 0.4s; /* Smooth transition */
}
.listbutton:hover:hover {
  background-color: #005f73; /* Darker blue */
  color: #ffffff; /* White */
}
.vertical-menu {
	width: 100%;
	text-align: center;
	border-radius:8px;
	background-color: lightcoral;
}
.vertical-menu a {
	width: 100%;
	background-color: lightseagreen;
	color: white;
	display: block;
	padding: 12px;
	border-radius:8px;
	text-decoration: none;
}
.vertical-menu a:hover {
	background-color: #ccc;
	color: black;
}
.vertical-menu a.active {
	background-color: Gray;
	color: white;
}
:root {
    --navbar-bg-color:  #81047b;
    --navbar-text-color: white;
    --navbar-text-color-focus: white;
    --navbar-bg-contrast: LightSeaGreen;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }	
  .container {
    max-width: 1000px;
    padding: 0 1.4rem;
    margin: 0 auto;
  }
  #navbar {
    --navbar-height: 64px;
    height: var(--navbar-height);
    background-color: var(--navbar-bg-color);
    left: 0;
    right: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    border-radius:8px;
  }
  .navbar-container {
    color: white;
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
  }
  .navbar-item {
    margin: 0.4em;
    width: 100%;
  }
  
  .home-link,
  .navbar-link {
    color: var(--navbar-text-color);
    text-decoration: none;
    display: flex;
    font-weight: 400;
    align-items: center;
  }
  
  .home-link:is(:focus, :hover) {
    color: var(--navbar-text-color-focus);
  }
  
  .navbar-link {
    justify-content: center;
    width: 100%;
    padding: 0.4em 0.8em;
    border-radius: 5px;
  }
  
  .navbar-link:is(:focus, :hover) {
    color: var(--navbar-text-color-focus);
    background-color: var(--navbar-bg-contrast);
  }
  #navbar-toggle {
    cursor: pointer;
    border: none;
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .icon-bar {
    display: block;
    width: 25px;
    height: 4px;
    margin: 2px;
    background-color: var(--navbar-text-color);
  }
  
  #navbar-toggle:is(:focus, :hover) .icon-bar {
    background-color: var(--navbar-text-color-focus);
  }
  #navbar-toggle[aria-expanded='true'] .icon-bar:is(:first-child, :last-child) {
    position: absolute;
    margin: 0;
    width: 30px;
  }
  
  #navbar-toggle[aria-expanded='true'] .icon-bar:first-child {
    transform: rotate(45deg);
  }
  
  #navbar-toggle[aria-expanded='true'] .icon-bar:nth-child(2) {
    opacity: 0;
  }
  
  #navbar-toggle[aria-expanded='true'] .icon-bar:last-child {
    transform: rotate(-45deg);
  }
  #navbar-menu {
    position: fixed;
    top: var(--navbar-height);
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    left: 0;
    right: 0;
  }
  #navbar-toggle[aria-expanded='true'] + #navbar-menu {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    visibility: visible;
  }
  .navbar-links {
    list-style: none;
    position: absolute;
    background-color: var(--navbar-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 0;
    right: 0;
    margin: 1.4rem;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }
    #navbar-toggle[aria-expanded='true'] + #navbar-menu .navbar-links {
    padding: 1em;
  }