/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    gap: 20px;
}

h2{
    margin: 0px;
}

p{
    margin: 0px;
    margin-bottom: 40px;
}

/* Contenedor del buscador */
.search-container {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 350px;
}

/* Campo de entrada */
.search-input {
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border-radius: 25px;
}

/* Botón de búsqueda */
.search-button {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #0056b3;
}

/* Select dentro del search-container */
.search-select {
    border: 1px solid #fff;
    padding: 8px 10px;
    font-size: 14px;
    border-radius: 20px;
    margin-left: 8px;
    background-color: #fff;
    cursor: pointer;
}

.search-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
    border-color: #007bff;
}

#resultado{
    display:block;
}


/* juan */

#types{
    background-color: transparent;
    /*appearance: none;*/
    border: none;
    min-width: 70px;
    height: 100%;
    border-radius: 16px 0px 0px 16px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    text-align: center;
}

#types:hover {
    border: 1px solid #007bff;
    background-color: #e6e6e6b0;
}

#types:focus {
    outline: none;
}

.logo{
    /* width: 30%; */
    height: 120px;
    margin-top: 20px;
}