*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
    --ff-main: "poppins", serif;
    --ff-accent: "anton", serif;
  }

  main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--ff-main);
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    padding: 3rem;
  }

  h1 {
    font-family: var(--ff-accent);
    font-size: 36px;
    font-weight: 600;
    color: #006291;
    text-align: center;
    margin: 0;
  }

  .box-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-family: var(--ff-main);
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    padding: 1rem;
  }

  .box-picture {
    width: 200px;
    height: 250px;
    background-color: #006291;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border-radius: 8px;
  }

  .box_img {
    width: 100px;
    height: 100px;
    overflow: hidden;
    
  }

  .name_box {
    font-family: var(--ff-main);
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
  }

  .button-container {
    width: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }

  .button {
    width: 200px;
    height: 40px;
    background-color: #89B15E;
    font-family: var(--ff-main);
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .availability-container {
    width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }

  .beschikbaarheid {
    font-family: var(--ff-main);
    font-size: 14px;
    font-weight: 200;
    color: #000000;
    margin-bottom: 1rem;
  }

  .kalender {
    width: 500px;
    height: 200px;
    border: none;
    border-radius: 5px;
    background-color: #FFFFFF;
  }

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  display: flex;
  flex-direction: row;
}

.modal_left_section {
  width: 25%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
}

.modal_button-container  {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.modal_right_section {
  width: 75%;
  height: auto;
  padding: 2rem 6rem;
}

.box-info-title {
  font-family: var(--ff-accent);
  font-size: 24px;
  font-weight: 400;
  color: #006291;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

