/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.titulo {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.descarga-form {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

.url-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

.tipo-descarga {
    margin-bottom: 15px;
}

.tipo-radio {
    margin-right: 10px;
}

.calidad-label {
    margin-right: 10px;
}

.calidad-select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.bajar-boton {
    background-color: #4CAF50;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    width: 25%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

.bajar-boton:hover {
    background-color: #45a049;
}

.progreso-container {
    margin-top: 20px;
    text-align: center;
}

.barra-progreso {
    width: 30%;
    height: 30px;
}

.estado {
    margin-top: 10px;
}

.descarga-final {
    margin-top: 20px;
    text-align: center;
}

.descargar-boton {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.descargar-boton:hover {
    background-color: #0056b3;
}

/* Estilos para dispositivos móviles */
@media (max-width: 600px) {
    .titulo {
        font-size: 20px;
    }

    .descarga-form {
        padding: 15px;
    }

    .url-input,
    .calidad-select,
    .bajar-boton,
    .descargar-boton {
        padding: 8px;
    }

    .url-input{
        height: 50px;
    }

    .bajar-boton{
        margin-top: 20px;
        width: 80%;
    }

}