body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    background-color: #7e7e7e;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* Contenedor principal */
.container{
    display: flex;
    justify-content: center;
}

/* Contenedor principal */
.contenido{
    width: 70%;
    padding: 20px 40px 40px 40px;
    margin: 20px 0;
    background-color: white;
    border-radius: 5px;
    text-align: center;
}

/* Encabezado */
.header{
    display: flex;
}

/* Container titulo */
.container-titulo{
    width: 80%;
    display: flex;
}

/* Container boton regresar */
.container-btnBack{
    width: 20%;
    display: flex;
    justify-content: right;
    align-items: center;
}

/* Lineas horizontales */
hr{
    height: 2px;
    background-color: #252525;
    border: none;
}

/* Descripcion */
.informacion{
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: left;
}

p{
    margin: 0;
}

ul{
    padding: 0 50px;
}

li{
    margin: 20px 0;
}

/* Container de las instrucciones de uso */
.instrucciones{
    text-align: left;
}

#titulo-demostracion{
    text-align: center;
}

h3{
    margin-bottom: 10px;
}

/* Container interfaz */
.interfaz{
    margin-bottom: 30px;
}

/* Container de la demostracion */
.demostracion{
    display: flex;
    justify-content: center;
}

/* Estilo para el input de datos */
#input-datos{
    background-color: #ccc;
    width: 40%;
    padding: 10px;
    margin-top: 20px;
    font-size: 14px;
    box-sizing: border-box;
    border-radius: 5px;
    border: none;
    outline: none;
}

#btn-agregar, #btn-aleatorio{
    width: 9.8%;
}

/* Botones */
button{
    width: 30%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    background-color: #252525;
    color: white;
    cursor: pointer;
}

/* Estilo para botones inactivos */
.btn-disabled{
    background-color: #7e7e7e;
    cursor: default;
}

/* Codigo */
.codigo{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.container-codigo{
    width: 60%;
    padding: 20px 40px;
    background-color: #252525;
    text-align: left;
    border-radius: 5px;
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    line-height: 1.5;
    color: #ccc;
}

#btn-copiar{
    width: 69%;
    transition: background 0.3s, color 0.3s;
    background-color: #7e7e7e;
}

#btn-copiar:hover{
    background-color: #252525;
}