

#eb-suggest.eb-suggest-panel{
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  margin-top: 6px;
  z-index: 9999;
  display: none;
  padding: 8px;
  max-height: min(70vh, 520px);
  overflow: auto;
}


.eb-see-all{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-decoration: none;
  color: #111827;
  background: #f9fafb;
  margin: 4px 2px 8px 2px;
  font-weight: 600;
  font-size: 13px; 
}
.eb-see-all:hover{ background:#f3f4f6; }
.eb-see-all.active{ outline:2px solid #16a34a; outline-offset: 1px; }
.eb-see-all-count{ color:#6b7280; font-weight:600; }


.eb-group{ margin: 6px 2px 8px 2px; }
.eb-group-title{
  font-size: 11.5px; 
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #6b7280;
  margin: 4px 6px 6px 2px;
}
.eb-group-list{ display: grid; grid-template-columns: 1fr; gap: 6px; }


.eb-item{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;           
  border-radius: 10px;
  text-decoration: none;
  color: #111827;
  border: 1px solid transparent;
}
.eb-item:hover{ background:#f9fafb; border-color: #eef0f3; }
.eb-item.active{ outline:2px solid #16a34a; outline-offset: 1px; }

.eb-item-media{ flex: 0 0 auto; }
.eb-thumb{
  width: 46px;                
  height: 32px;               
  border-radius: 6px;
  object-fit: cover;
  display:block;
  background:#f3f4f6;
  border: 1px solid #e5e7eb;
}
.eb-thumb--ph{
  width: 46px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(90deg,#f3f4f6 0%, #f8f9fb 40%, #f3f4f6 100%);
}

.eb-item-body{ min-width: 0; display: grid; gap: 1px; }
.eb-item-title{
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;            
  line-height: 1.25;          
}
.eb-item-meta{
  font-size: 11.5px;          
  color:#6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eb-badge{
  margin-left: 8px;
  background:#f1f5f9; color:#0f172a; border:1px solid #e2e8f0;
  font-size: 11.5px;          
  padding: 1px 6px;           
  border-radius: 999px;
  display: inline-flex; align-items: center; height: 18px; 
}


.eb-recent{ display:flex; flex-wrap:wrap; gap:6px; padding: 2px; }
.eb-chip{
  border:1px solid #e5e7eb; background:#fff; border-radius: 999px;
  padding:6px 10px; font-size: 12.5px; cursor: pointer; 
}
.eb-chip:hover{ background:#f9fafb; }
.eb-empty{ color:#6b7280; font-size: 12.5px; padding: 8px 10px; } 


@media (min-width: 640px){
  .eb-group-list{ grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (min-width: 920px){
  .eb-group-list{ grid-template-columns: repeat(3,minmax(0,1fr)); }
}
