/* Esconde o input que guarda o ID */
.po-share-id {
  display: none !important;
}

/* Container de sugestões */
.po-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  max-width: 350px;
  width: 100%;
  background: #003642;       /* azul petróleo escuro */
  border: 1px solid #00667d; /* tom mais claro de petróleo */
  border-radius: 4px;
  z-index: 1000;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  color: #fff;               /* fonte branca */
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  max-height: 200px;
  overflow-y: auto;
}

/* Cada sugestão */
.po-suggestions li {
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 0.9em;
}
.po-suggestions li:hover {
  background: #005a75;       /* hover levemente mais claro */
}

/* Avatar na sugestão */
.po-sugg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
}

/* styling do artista no card */
.agenda-artist {
  display: flex;
  align-items: center;
  margin: 10px 0;
  color: #fff;
}
.agenda-artist-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 8px;
  object-fit: cover;
}
