/* -------- RESET BÁSICO -------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* -------- ESTILOS GENERALES -------- */
body {
    background: #f3f6f9;
    color: #333;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* -------- TITULO -------- */
h1 {
    margin-bottom: 20px;
    color: #1a73e8;
    font-size: 28px;
}

/* -------- FORMULARIO -------- */
input[type="text"] {
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 240px;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

input[type="text"]:focus {
    border-color: #1a73e8;
    outline: none;
}

/* -------- BOTONES -------- */
button {
    margin-left: 8px;
    padding: 10px 16px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #0f5ec4;
}

button:active {
    background-color: #0a4ea3;
}

/* -------- SECCIÓN LISTA -------- */
h3 {
    margin: 40px 0 10px;
    font-size: 22px;
}

#divLista {
    width: 300px;
    background: white;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #ddd;
    min-height: 100px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

/* Estilo para cada planta listada (si lo generas en JS) */
#divLista p {
    padding: 8px 10px;
    background: #eef3f8;
    border-radius: 8px;
    margin-bottom: 8px;
    border-left: 4px solid #1a73e8;
}
