body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    /* height: 100%; quitado por PIFIA EN CELULAR */
}

.container {
    display: flex;
    height: 100vh;  /*CAMBIANDO height: 100% por height: 100vh se arregló la pifia del celular */
    background-color: #1a1a1a;
    color: white;

}

.sidebar {
    width: 230px; /*width: 250px;*/
    background-color: #2c2c2c;
    transition: margin-left 0.05s;
    overflow-y: auto;   
}

.sidebar.hidden {
    margin-left: -250px;
}

.sidebar ul {
    list-style-type: none;
  /*padding: 0px; */
    padding: 10px;
}

.sidebar li {
    padding: 10px 10px;
    cursor: pointer;
    border-radius: 3px;
}

@media (width < 800px){
.sidebar li a {
  font-size: 20px;
} 
}

.sidebar li:hover {
    background-color: #4070f4;
}

.sidebar li.active {
    background-color: #4070f4;  
}

/*ocultar scrollbar del sidebar*/
.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar a {
  color: white;
  text-decoration: none;
  font-size: 25px;
  display: block; /* Hace que todo el botón sea un link */
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
    height: 100%;
  
}


.toggle-btn {
  /*  background: none;  */
    background: #4070f4;
    border: none;
    color: white;
    font-size: 42px;
    cursor: pointer;
    display: none;  /*cambiar a position: fixed para que aparezca el botón celeste de mostrar/ocultar sidebar  
    position: fixed;
    left: 0;
    bottom: 0;
    border-radius: 0 3px 0 0; */
}  

.video-container {
    flex-grow: 1;
    background-color: black;
    height: 100%;
  
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}
