.video-player {
    position: relative;
    width: 640px;
    height: 360px;
    background-color: #000;
}

video {
    width: 100%;
    height: auto;
}

#signLanguageVideo {
    width: 200px;  /* Tamaño más pequeño */
    height: 150px;
    position: absolute;
    bottom: 20px;  /* Posiciona el video en la esquina inferior derecha */
    right: 20px;
    border: 2px solid #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    display: none; /* Inicialmente oculto */
}

.video-controls {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: -46px;
    left: 0;
    right: 0;
    background-color: rgb(0, 0, 0);
    padding: 10px;
    color: #fff;
}

button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    color: #00f;
}

#seekBar {
    flex-grow: 1;
    margin: 0 10px;
}

#volumeControl {
    width: 100px;
}

span {
    font-size: 14px;
}