/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
    color: #333;
    text-align: center;
    padding: 50px;
}

/* Título */
h2 {
    color: #631497;
    margin-bottom: 20px;
}

/* Input de texto */
input[type="text"] {
    padding: 10px;
    width: 250px;
    border: 2px solid #6e34db;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    margin-bottom: 15px;
}

input[type="text"]:focus {
    border-color: #2980b9;
    box-shadow: 0px 0px 5px rgba(52, 152, 219, 0.6);
}

/* Botón */
button {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
/* Botones dinámicos de la lista */

.botonLista {
    margin: 5px;
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.botonLista:hover {
    background-color: #0056b3;
}


button:hover {
    background-color: #2980b9;
}

/* Resultado */
#resultado {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #ae3027;
}