/* Container to hold suggestions */
.live-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    font-size: 0.95rem;
}

/* Individual suggestion item */
.live-search-suggestions .suggestion {
    padding: 10px 15px;
    cursor: pointer;
    color: #000;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

/* Hover state */
.live-search-suggestions .suggestion:hover {
    background-color: #f0f8ff;
    color: #0056b3;
}

/* Fix layout by making parent relative */
.search-form {
    position: relative;
}

.search-form .search-field {
    width: 100%;
}
