﻿.search-wrapper {
    position: relative;
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1050;
    display: none;
    margin-top: 5px;
}

.search-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.2s;
}

    .search-item:hover {
        background: #f8f9fa;
    }

    .search-item:last-child {
        border-bottom: none;
    }

    .search-item img {
        width: 45px;
        height: 45px;
        object-fit: cover;
        border-radius: 4px;
    }
