.search-container {
    position: relative;
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.dropdown-item:hover {
    background-color: #f9f9f9;
}

.dropdown-item img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-right: 12px;
    border-radius: 4px;
    background: #eee;
}

.game-info {
    display: flex;
    flex-direction: column;
}

.game-name {
    font-weight: bold;
    color: #333;
}

.game-year {
    font-size: 0.85em;
    color: #666;
}