/* Search Results Dropdown Styles */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-top: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 0 0 5px 5px;
}

.search-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-results-list li {
    border-bottom: 1px solid #f1f1f1;
}

.search-results-list li:last-child {
    border-bottom: none;
}

.search-result-item {
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f8f9fa;
    color: #b12b28; /* SRMACOS brand red */
}

.search-result-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin-right: 15px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
}

.search-result-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.search-result-info {
    flex-grow: 1;
    overflow: hidden;
}

.search-result-title {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-meta {
    display: block;
    font-size: 12px;
    color: #777;
}

.search-no-results {
    padding: 15px;
    text-align: center;
    color: #777;
    font-size: 14px;
}
