.live-search {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 9999;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.live-search ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 298px;
    overflow-y: auto;
}

.live-search li {
    border-bottom: 1px solid #eee;
}

.live-search li:last-child {
    border-bottom: none;
}

.search-result-link {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.search-result-link:hover {
    background-color: #f5f5f5;
}

.search-result-image {
    width: 16px;
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
}

.search-result-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-loading,
.search-error,
.no-results {
    padding: 15px;
    text-align: center;
    color: #666;
}

.search-form {
    position: relative;
}