/* src/cercalotti/views/css/front/lotti.css */
#cercalotti-page {
    max-width: 640px;
    margin: 0 auto;
    padding: 1rem 0;
}

#cercalotti-form {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    position: relative;
}

#cercalotti-input {
    flex: 1;
    padding: 0.5rem;
    font-size: 1rem;
}

.cercalotti-suggestions {
    position: absolute;
    z-index: 10;
    background: #fff;
    border: 1px solid #ccc;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    max-width: 300px;
}

.cercalotti-suggestions li {
    padding: 0.4rem 0.6rem;
    cursor: pointer;
}

.cercalotti-suggestions li:hover {
    background: #f0f0f0;
}

.cercalotti-error {
    color: #b00020;
    font-weight: bold;
}

#cercalotti-result p {
    margin: 0.25rem 0;
}