
.tag-selector[data-v-9c41c591] {
  position: relative;
  width: 100%;
}
.tags-container[data-v-9c41c591] {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

/* ==============================
   TAG CHIPS (reduzidos e elegantes)
================================= */
.tag-chip[data-v-9c41c591] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  position: relative;
  overflow: visible;
  border: 1px solid;
  transition: all 0.2s ease;
  max-width: 140px;
  min-height: 22px;
}
.tag-chip[data-v-9c41c591]:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.tag-chip-label[data-v-9c41c591] {
  font-weight: 500;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tag-chip-remove[data-v-9c41c591] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  padding: 0;
  border: 1px solid #d1d5db;
  background: rgba(255, 255, 255, 0.795);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border-radius: 50%;
  font-size: 17px;
  /* line-height: 1; */
  color: #313139;
  cursor: pointer;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%) translateX(16px);
  opacity: 0;
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 2;
}
.tag-chip:hover .tag-chip-remove[data-v-9c41c591] {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.tag-chip-remove[data-v-9c41c591]:hover {
  background: rgba(255, 255, 255, 0.918);  
  transform: translateY(-50%) translateX(0) scale(1.1);
}
.tag-chip-remove[data-v-9c41c591]:active {
  transform: translateY(-50%) translateX(0) scale(0.9);
}

/* ==============================
   CONTADOR DE TAGS
================================= */
.tag-counter[data-v-9c41c591] {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 6px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 4px;
  min-height: 22px;
}
.tag-counter[data-v-9c41c591]:hover {
  background: #E5E7EB;
  transform: translateY(-1px);
}
.tag-counter-text[data-v-9c41c591] {
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  line-height: 1;
}
.tag-counter-expand[data-v-9c41c591] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  background: none;
  color: #6B7280;
  cursor: pointer;
  font-size: 10px;
}

/* ==============================
   BOTÃO ADICIONAR TAG (reduzido)
================================= */
.insert-tag-button[data-v-9c41c591] {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border: 1px dashed #d1d5db;
  background: transparent;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  min-height: 22px;
}
.insert-tag-button[data-v-9c41c591]:hover {
  border-color: #6366F1;
  color: #6366F1;
  background: #F8FAFF;
  border-style: solid;
  transform: translateY(-1px);
}
.tag-selector-dropdown[data-v-9c41c591] {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  margin-top: 4px;
}
.create-tag-tip[data-v-9c41c591] {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
  text-align: left;
  line-height: 1.2;
}

/* Mantém o texto em negrito legível no hint */
.create-tag-tip strong[data-v-9c41c591] {
  color: #374151;
  font-weight: 600;
}
.create-tag-panel[data-v-9c41c591] {
  padding: 16px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}
.create-tag-content[data-v-9c41c591] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.create-tag-info[data-v-9c41c591] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.create-tag-label[data-v-9c41c591] {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.create-tag-name[data-v-9c41c591] {
  font-size: 14px;
  color: #1f2937;
  font-weight: 600;
}
.create-tag-colors[data-v-9c41c591] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.create-tag-colors-label[data-v-9c41c591] {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}
.create-tag-colors-grid[data-v-9c41c591] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.color-circle[data-v-9c41c591] {
  width: 28px;
  height: 28px;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
  position: relative;
}
.color-circle[data-v-9c41c591]:hover {
  transform: scale(1.1);
  border-color: rgba(0, 0, 0, 0.2);
}
.color-circle.selected[data-v-9c41c591] {
  border-color: #374151;
  box-shadow: 0 0 0 2px white, 0 0 0 4px #374151;
}
.color-circle.selected[data-v-9c41c591]::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #374151;
  font-weight: bold;
  font-size: 14px;
}
.create-tag-hint[data-v-9c41c591] {
  font-size: 11px;
  color: #6B7280;
  text-align: center;
  font-style: italic;
}

/* Estilo simples para "Tag selecionada" */
.tag-already-selected[data-v-9c41c591] {
  padding: 16px;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}
.tag-already-selected-text[data-v-9c41c591] {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

/* Estilo para "Nenhuma etiqueta disponível" */
.no-results[data-v-9c41c591] {
  padding: 20px 16px;
  text-align: center;
}
.no-results-content[data-v-9c41c591] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.no-results-icon[data-v-9c41c591] {
  font-size: 32px;
  color: #d1d5db;
  margin-bottom: 4px;
}
.no-results-text[data-v-9c41c591] {
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
  margin: 0;
}
.no-results-hint[data-v-9c41c591] {
  font-size: 12px;
  color: #9CA3AF;
  margin: 0;
  font-style: italic;
}

/* ==============================
   RESPONSIVIDADE
================================= */
@media (max-width: 768px) {
.tag-chip[data-v-9c41c591] {
    padding: 2px 6px;
    font-size: 11px;
    max-width: 100px;
}
.tag-counter[data-v-9c41c591] {
    padding: 2px 4px;
}
.insert-tag-button[data-v-9c41c591] {
    padding: 2px 6px;
    font-size: 10px;
}
.tags-container[data-v-9c41c591] {
    gap: 4px;
}
}
