/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    text-align: center;
}

/* Encabezado */
h1 {
    font-size: 2.5em;
    color: #333;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Fila de la palabra buscada */
.search-result {
    margin-bottom: 30px; /* mayor separación entre la palabra buscada y los resultados */
    font-size: 1.2em;
}

/* Contenedor de resultados */
.result-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    text-align: left;
}

/* Bloques de cada resultado */
.result-block {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333;
    white-space: nowrap;
    user-select: all; /* Permite copiar todo el contenido */
    cursor: pointer;
}

.result-block:hover {
    background-color: #e6e6e6; /* Color de fondo al pasar el cursor */
}

footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #777;
    text-align: center;
}

footer p {
    margin-top: 10px;
}

/* Para los párrafos */
p {
    margin-bottom: 20px; /* Separación entre párrafos */
    text-align: left; /* Alineado a la izquierda */
    font-size: 1.1em; /* Aumenta el tamaño de fuente */
    line-height: 1.6; /* Mejora la legibilidad */
    color: #333; /* Color del texto */
}

