/* Menu */
.videolessen,
.menu {
  position: absolute;
  top: 25%;
  left: 10%;
  width: 30%;
}

.videolessen .menu-item {
  position: relative;
  width: 100%;
  min-height: 4em;

  margin-bottom: 1em;
  /* background-color: rgba(255, 255, 255, 0.5); */
  background-color: transparent;
  border: 2px solid white;
  outline: none;
}
.videolessen .menu-subitem {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.1em;
  letter-spacing: 0.25em;
  color: white;
  margin: 0;
}

.videolessen .menu-item:hover .menu-subitem {
  color: rgb(253, 107, 54);
}

.videolessen .menu-item:hover {
  /* background-color: rgba(255, 255, 255, 0.75); */
  border-color: rgb(253, 107, 54);
}

.videolessen .menu-item:active,
.videolessen .menu-item:focus {
  background-color: rgba(255, 255, 255);
  border-color: rgb(253, 107, 54);
}

.videolessen .menu-item:active,
.videolessen .menu-item:focus .menu-subitem {
  color: rgb(253, 107, 54);
}

/* Video Thumbs */
.videothumb {
  width: 30vw;
  background-color: white;
  padding: 1em;
  position: absolute;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border: 4px solid white;
  border-radius: 10px;
}
.videothumb:hover {
  cursor: pointer;
  border: 4px solid rgb(253, 107, 54);
}
.videothumb img {
  width: 100%;
}
.videothumb p {
  text-align: center;
  margin: 0;
  margin-top: 0.75em;
  padding: 0.25em;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: large;
}

/* Fullscreen Video Player */
#topCover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 7.5vh;
  padding-left: 1em;
  z-index: 1000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: black;
}

#videoLoaderFullScreen {
  position: fixed; /* Hele viewport vullen */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100; /* Zorg dat het boven normale content staat */
  background: black;
}
/* Dit voorkomt dat het iframe zich als een top-layer gedraagt */
#videoLoaderFullScreen {
  pointer-events: auto; /* Zorg dat interactie mogelijk blijft */
}
