.search-wrapper {
    position: relative;
}

#liveSearchResults {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
}

.search-result-img-container {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 4px;
}

.search-result-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    color: #adb5bd;
}

/* Spinner for search */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

#searchSpinner {
    display: none;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}