/* Live Search Box Styling */
.search-container {
    position: relative;
    width: 100%; /* Or a fixed width like 250px */
}

.search-results-list {
    position: absolute;
    top: 100%; /* Position it right below the input */
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 0.25rem 0.25rem;
    list-style-type: none;
    margin: 0;
    padding: 0;
    z-index: 1000; /* Ensure it appears above other content */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
}

.search-results-list li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-results-list li a:hover {
    background-color: #f8f9fa;
}

.search-results-list .no-results {
    display: block;
    padding: 0.75rem 1rem;
    color: #888;
    font-style: italic;
}