* {
  font-family: Arial, Helvetica, sans-serif;
  padding: 0;
  margin: 0;
  width: 100%;
}
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}
#videocall {
  color: aliceblue;
}

.content-background {
  background-color: rgba(231, 231, 231, 0.99);
  z-index: 1;
  overflow: hidden;
  position: relative;
  width: 100vw;
  height: 100vh;
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
}
.background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Cambios en la info de usuario */
.info-column {
  z-index: 3;
  position: absolute;
  width: 100%;
  margin-top: 1.8rem;
  height: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tittle {
  font-size: 1.5rem;
}

/* MenÃº de botones en la parte inferior */
.menu-row-bottom {
  z-index: 4;
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px; 
  align-items: center;
  justify-content: center;
  width: auto;
}

.item-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.circle {
  color: #000;
  width: 20px; 
  height: 20px; 
  padding: 10px;
  margin: 10px;
  border-radius: 50%; 
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.negative {
  background-color: #d25c6c;
}
.positive {
  background-color: #cecece;
}

.negative:hover {
  background-color: #fb7083; 
}
.positive:hover{
  background-color: rgb(255, 255, 255);
}

#circle img {
  width: 30px;  
  height: 30px; 
}

/* Video principal */

#video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -4;
  overflow: hidden;
}
#user-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#user-video, .thumbnail-video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}


/* Miniatura del video: ahora cuadrada y desplazada hacia abajo */
#thumbnail-container {
  position: absolute;
  bottom: 80px; 
  right: 30px; 
  width: 140px;
  height: 175px;
  border: 1.5px solid rgb(104, 104, 104);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  border-radius: 16px; 
}

.thumbnail-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px; 
}

/* Ajustes para la versiÃ³n mÃ³vil */
@media (max-width: 768px) {
  
  .background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover; 
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
*/
  .menu-row-bottom {
    width: 60%; 
  }
}

/* PÃ¡gina leave */

#leave-web {
  color: #262626;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content-leave {
  width: 60vw;
  height: 50vh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e5e5e59f;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 24px;
}

.tittle-leave {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  text-align: center;
}

.text-leave {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  text-align: center;
}

.button-row-leave {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%; 
  max-width: 600px; 
  gap: 20px; 
}

.button-leave {
  padding: 15px;
  margin: 10px;
  background-color: #d4d3d3;
  color: rgb(46, 46, 46);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.button-leave:hover {
  background-color: #f4f4f4;
}
#leave-background {
  z-index: 0;
  overflow: hidden;
  position: relative;
  width: 100vw;
  height: 100vh;
}
#image-background{
  width: 100vw;
  height: 100vh;
  object-fit: cover; 
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(30px);
}


/* Ajuste para la versiÃ³n mÃ³vil */
@media (max-width: 768px) {
  .content-leave {
    padding: 8%;
  }
  .button-row-leave {
    width: 80%; 
    flex-direction: column; 
    align-items: center; 
  }

  .button-leave {
    width: 100%; 
    margin: 5px 0; 
  }
  @media (max-width: 1024px) and (min-width: 768px) {
    .background-video {
      width: 100vw;
      height: 100vh;
      object-fit: cover;
    }
  }
  
}
