.buscador {
    background-color: #D0E5F7;
    color: #08061f;
    min-height: auto;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resultados {
    /*background-color: azure;*/
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
}

.resultados h1{
    text-align: center;
}

.result-item {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.result-item p {
    text-align: justify;
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
    }

.result-item h3.result-url {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
}

.result-item a {
    color: #007bff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.result-item a:hover {
    color: #0056b3;
}