/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
   * Remove text-shadow in selection highlight:
   * https://twitter.com/miketaylr/status/12228805301
   *
   * Vendor-prefixed and regular ::selection selectors cannot be combined:
   * https://stackoverflow.com/a/16982510/7133471
   *
   * Customize the background color to match your design.
   */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
   * A better looking default horizontal rule
   */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440
   */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
   * Remove default fieldset styles.
   */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
   * Allow only vertical resizing of textareas.
   */

textarea {
  resize: vertical;
}

/* ==========================================================================
     Author's custom styles
     ========================================================================== */

/* ALGEMEEN */

html {
  font-size: 16px;
}

body {
  font-family: Arial;
}

.container {
  max-width: 1024px;
  margin: 0 auto;

}

header {
  border-bottom: 1px solid lightgrey;
  font-size: 1.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: grey;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 5rem;
}

h1 {
  margin-bottom: 0px;
}

h1+a {
  display: block;
  margin-bottom: 1.5rem;
}

.msg {
  margin: 1rem 0;
  padding: 1rem;
  background-color: lightblue;
  border-radius: 4px;
}

table {
  width: 100%;
}

th {
  text-align: left;
}

/* HOME */

.home {
  min-height: calc(100vh - 7rem - 1px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* MELDINGEN */

.form-group {
  margin: 1rem 0;
  
}

label {
  cursor: pointer;
  display: inline-block;
  min-width: 140px;
  vertical-align: top;
  background-color: grey;

}

.form-input {
  width: 600px;
}














/* ==========================================================================
     Helper classes
     ========================================================================== */

/*
   * Hide visually and from screen readers
   */

.hidden,
[hidden] {
  display: none !important;
}

/*
   * Hide only visually, but have it available for screen readers:
   * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
   *
   * 1. For long content, line feeds are not interpreted as spaces and small width
   *    causes content to wrap 1 word per line:
   *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
   */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
   * Extends the .sr-only class to allow the element
   * to be focusable when navigated to via the keyboard:
   * https://www.drupal.org/node/897638
   */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
   * Hide visually and from screen readers, but maintain layout
   */

.invisible {
  visibility: hidden;
}

/*
   * Clearfix: contain floats
   *
   * For modern browsers
   * 1. The space content is one way to avoid an Opera bug when the
   *    `contenteditable` attribute is included anywhere else in the document.
   *    Otherwise it causes space to appear at the top and bottom of elements
   *    that receive the `clearfix` class.
   * 2. The use of `table` rather than `block` is only necessary if using
   *    `:before` to contain the top-margins of child elements.
   */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
     EXAMPLE Media Queries for Responsive Design.
     These examples override the primary ('mobile first') styles.
     Modify as content requires.
     ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
     Print styles.
     Inlined to avoid the additional HTTP request:
     https://www.phpied.com/delay-loading-your-print-css/
     ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}


tr:nth-child(odd) {
  background-color: lightgrey;
}

tr:hover {
  background-color: red;
}

tr:first-child {
  background-color: red;
}

.select-board {
  display: flex;
  justify-content: center;
}

select {
  margin-top: 20px;
  width: 700px;
  height: 40px;
}

.boord  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--backround);

  color: white;
  font-family: -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Noto Sans,
    Ubuntu,
    Droid Sans,
    Helvetica Neue,
    sans-serif;
  width: 100%;
  height: 87vh;
}

.colum {
  width: 30%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background-color: grey;
  border-radius: 10px;
  height: 560px;
  padding: 10px;
  margin: 20px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: var(--text);
}

.colum h2 {
  color: #000;
  height: 40px;
  margin-top: 15px;
  width: 80%;
  text-align: center;
}

.card {
  margin-top: 20px;
  box-shadow: 5px 5px 10px black;
  background-color: white;
  border-radius: 10px;
  /*box-shadow: 3px 5px 0px var(--shadow);*/
  cursor: pointer;
  min-height: 60px;
  width: 90%;
  color: black;
  display: flex;
  flex-direction: column;
}

.card h3 {
  margin-left: 10px;
  color: #000;
  height: 100%;
  width: 90%;
  font-weight: 600;
}

.card a {
  color: var(--lightbg);
  margin-left: auto;
  margin-right: 10px;
  margin-bottom: 6px;
  display: flex;
  transition: color 0.2s ease;
}

.card .top {
  border-radius: 10px 10px 0px 0px;
  /*width: 100%;*/
  height: 10px;
}

.cButton {
  margin-top: 20px;
  background-color: var(--backround2);
  border: 3px dashed #aeb2b6;
  border-radius: 20px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  color: #aeb2b6;
  cursor: pointer;
  height: 100px;
  font-size: 24px;
  width: 90%;
  box-shadow: none;

  transition: background-color 0.2s ease;
}

.cButton:hover {
  background-color: #e8e8e8;
}

.cbutton p {
  margin-top: 500px;

}

.container-index {
  max-width: 1024px;
  margin: 20px auto;
  background-color: grey;
  border-radius: 20px;
  padding-top: 10px;
  padding-bottom: 50px;
}


.card-container {
  overflow-y: auto;
  margin-left: 25px;
  width: 100%;
  flex: 1;
  padding-right: 5px;
  padding-bottom: 10px;
}
.card-container::-webkit-scrollbar {
  width: 0px;
}
.card-container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

.container-index h1 {
  color: white;
  font-size: 40px;
  text-align: center;
  border-bottom: white 3px solid;
}

.center {
  margin: 30px auto;
  height: 80px;
  width: 80%;
  display: block;
  background-color: var(--lightbg);
  border: 3px white solid;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.center a {
  text-decoration: none;
  color: white;
}

.center:hover {
  background-color: var(--midbg);
}

.grid-container {
  margin-top: 50px;
  display: grid;
  grid-template-columns: auto auto auto;
  text-align: center;
  gap: 20px 0;
}

.grid-item button {
  text-decoration: none;
  font-size: 20px;
  color: black;
  cursor: pointer;
  text-shadow: 0 0 0 #FCFCFC, -1px -1px 0 #FCFCFC, 1px -1px 0 #FCFCFC, -1px 1px 0 #FCFCFC, 1px 1px 0 #FCFCFC;
}

.grid-item button {
  filter: grayscale(50%);
  background-size: 450px;
  background-position: center;
  width: 300px;
  border-radius: 3px;
  height: 100px;
  border: 3px white solid;
}

.horeca {
  background-image: url("../img/horeca.jpg");
}

.horeca:hover {
  filter: grayscale(0%);
}

.techniek {
  background-image: url("../img/techniek.jpg");
}

.techniek:hover {
  filter: grayscale(0%);
}

.personeel {
  background-image: url("../img/personeel.png");
}

.personeel:hover {
  filter: grayscale(0%);
}

.inkoop {
  background-image: url("../img/inkoop.jpg");
}

.inkoop:hover {
  filter: grayscale(0%);
}

.groen {
  background-image: url("../img/groen.jpg");
}

.groen:hover {
  filter: grayscale(0%);
}

.klantenservice {
  background-image: url("../img/klantenservice.jpg");
}

.klantenservice:hover {
  filter: grayscale(0%);
}

main {
  background-image: url("../img/space.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top; 
  min-height: calc(100vh - 7rem);
  padding: 1rem 0;
}

.afdeling {
  background-color: grey;
}


.bodyInlog{
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.mainInlog{
  width: 350px;
  height: 500px;
  background: red;
  overflow: hidden;
  background: url("https://doc-08-2c-docs.googleusercontent.com/docs/securesc/68c90smiglihng9534mvqmq1946dmis5/fo0picsp1nhiucmc0l25s29respgpr4j/1631524275000/03522360960922298374/03522360960922298374/1Sx0jhdpEpnNIydS4rnN4kHSJtU1EyWka?e=view&authuser=0&nonce=gcrocepgbb17m&user=03522360960922298374&hash=tfhgbs86ka6divo3llbvp93mg4csvb38") no-repeat center/ cover;
  border-radius: 10px;
  box-shadow: 5px 20px 50px grey;
  background-color: white;
}
#chk{
  display: none;
}
.login{
  position: relative;
  width:100%;
  height: 100%;
}
.mainInlog label{
  color: #573b8a;
  font-size: 2.3em;
  justify-content: center;
  display: flex;
  margin: 60px;
  font-weight: bold;
  cursor: pointer;
  transition: .5s ease-in-out;
}
.mainInlog input{
  width: 60%;
  height: 20px;
  background: #e0dede;
  justify-content: center;
  display: flex;
  margin: 20px auto;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 5px;
}
.mainInlog button{
  width: 60%;
  height: 40px;
  margin: 10px auto;
  justify-content: center;
  display: block;
  color: #fff;
  background: #573b8a;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  outline: none;
  border: none;
  border-radius: 5px;
  transition: .2s ease-in;
  cursor: pointer;
}
.mainInlog button:hover{
  background: #6d44b8;
}

.create-container {
  max-width: 1024px;
  margin: 0 auto;
  background-color: grey;
  padding: 5px 5px 20px 20px;
  border-radius: 20px;
}

.select-board select{
  border-radius: 5px;
}
header{
  font-size: 1.25rem;
  padding-top: 1rem;
  font-weight: 500;
  border-bottom: 1px solid lightgrey;
  font-size: 1.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: grey;
}

nav a:hover{
  border: 2px solid black;
}
nav a {
  color: var(--p);
  text-decoration: none;
}

header .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 10px;

}
span {
  margin-left: 15px;
}
