body {
  font-family: "Poppins", sans-serif !important;
  color: #3f4750 !important;
}

.bg-perso {
  background-color: #08053f !important;
}

.main-content {
  margin-left: 25% !important; /* Ajusta el margen derecho según el ancho de la barra lateral */
}

.pt-perso {
  padding-top: 7rem;
}

.navbar-toggler {
  background-color: white !important;
}

.filtro {
  display: none;
}

.video-library {
  display: flex;
  flex-wrap: wrap;
}

.video-container {
  width: 100%;
  height: 225px;
  position: relative;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#player {
  width: 100%;
  height: 480px; /* Ajusta la altura según tus necesidades */
}

.overlay-play-button {
  /* Used to position the overlay */
  position: relative;
}

.overlay-play-button__overlay {
  /* Position */
  left: 0;
  position: absolute;
  top: 0;

  /* Take full size */
  height: 100%;
  width: 100%;

  /* Center the content */
  align-items: center;
  display: flex;
  justify-content: center;

  /* Add a dark background */
  background-color: rgba(0, 0, 0, 0.25);
}

.overlay-play-button__play {
  border: 0.2rem solid black;
  border-radius: 9999px;
  height: 3rem;
  width: 3rem;

  /* Center the content */
  align-items: center;
  display: flex;
  justify-content: center;
}

/* ============================ Scroll ============================  */

body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

body::-webkit-scrollbar-thumb:active {
  background-color: #999999;
}

body::-webkit-scrollbar-track {
  background: #e1e1e1;
  border-radius: 4px;
}

body::-webkit-scrollbar-track:hover,
body::-webkit-scrollbar-track:active {
  background: #d4d4d4;
}

