#sip-form-container {
    width: 100%;
    padding: 10px;
    min-height: 350px;
}

#sip-search-form {
    display: flex;
    flex-direction: row;  /* Alinea los elementos en una fila */
    align-items: center;  /* Alinea los elementos verticalmente */
    gap: 10px;            /* Espacio entre los elementos */
    padding-bottom: 2em;
}

#sip-search-form label {
    margin-right: 10px;
    font-weight: bold;
}

#sip-search-form input[type="text"] {
    padding: 5px;
    font-size: 16px;
    width: 200px;  /* Puedes ajustar el ancho si es necesario */
}

#sip-search-form button {
    padding: 5px 15px;
    font-size: 16px;
    background-color: #074750;
    color: white;
    border: none;
    cursor: pointer;
}

#sip-search-form button:hover {
    background-color: #45a049;
}

#sip-results details {
    padding: 1em;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
}
