@charset "utf-8";

.suggestions {
  position: absolute;
  left: 0;
  width: 100%;
  border: 1px solid #eee;
  border-top: none;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 50vh;
  overflow-y: auto;
  z-index: 10;
}
.suggestions li {
  padding: 8px;
  cursor: pointer;
}
.suggestions li:hover,
.suggestions li.active { /* キーボード操作時のハイライト用 */
  background-color: #f0f0f0;
}