
.notes-component[data-v-1c8bb8c6] {
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Input simplificado */
.notes-input-container[data-v-1c8bb8c6] {
  margin-bottom: 16px;
}
.notes-input-trigger[data-v-1c8bb8c6] {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.2s ease;
}
.notes-input-trigger[data-v-1c8bb8c6]:hover {
  border-color: #00b4d8;
  background: #f0f9ff;
}
.notes-trigger-icon[data-v-1c8bb8c6] {
  width: 16px;
  height: 16px;
  color: #6b7280;
  flex-shrink: 0;
}
.notes-input-placeholder[data-v-1c8bb8c6] {
  color: #9ca3af;
  font-size: 13px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.notes-textarea-container[data-v-1c8bb8c6] {
  opacity: 0;
  transform: scaleY(0.9);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.notes-textarea-expanded[data-v-1c8bb8c6] {
  opacity: 1;
  transform: scaleY(1);
  max-height: 400px;
}
.notes-textarea[data-v-1c8bb8c6] {
  width: 100%;
  min-height: 80px;
  padding: 10px 12px;
  border: 1px solid #00b4d8;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.5;
  resize: vertical;
  outline: none;
  font-family: inherit;
  background: #ffffff;
  transition: border-color 0.2s ease;
}
.notes-textarea[data-v-1c8bb8c6]:focus {
  border-color: #0096c7;
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}
.notes-textarea[data-v-1c8bb8c6]::-moz-placeholder {
  color: #9ca3af;
}
.notes-textarea[data-v-1c8bb8c6]::placeholder {
  color: #9ca3af;
}

/* Actions compactas */
.notes-actions[data-v-1c8bb8c6] {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.notes-btn[data-v-1c8bb8c6] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}
.notes-btn[data-v-1c8bb8c6]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.notes-btn-save[data-v-1c8bb8c6] {
  background: #00b4d8;
  color: white;
}
.notes-btn-save[data-v-1c8bb8c6]:hover:not(:disabled) {
  background: #0096c7;
}
.notes-btn-cancel[data-v-1c8bb8c6] {
  background: #f3f4f6;
  color: #6b7280;
}
.notes-btn-cancel[data-v-1c8bb8c6]:hover:not(:disabled) {
  background: #e5e7eb;
  color: #374151;
}
.notes-btn-icon[data-v-1c8bb8c6] {
  width: 16px;
  height: 16px;
}

/* Lista minimalista */
.notes-list[data-v-1c8bb8c6] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 4px;
}
.notes-list[data-v-1c8bb8c6]::-webkit-scrollbar {
  width: 4px;
}
.notes-list[data-v-1c8bb8c6]::-webkit-scrollbar-track {
  background: #f9fafb;
  border-radius: 2px;
}
.notes-list[data-v-1c8bb8c6]::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 2px;
}
.notes-list[data-v-1c8bb8c6]::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
.notes-item[data-v-1c8bb8c6] {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
}
.notes-item[data-v-1c8bb8c6]:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.notes-item-main[data-v-1c8bb8c6] {
  flex: 1;
  min-width: 0;
}
.notes-item-text[data-v-1c8bb8c6] {
  color: #374151;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 6px 0;
  word-wrap: break-word;
}
.notes-item-footer[data-v-1c8bb8c6] {
  display: flex;
  align-items: center;
  gap: 6px;
}
.notes-item-date[data-v-1c8bb8c6] {
  color: #9ca3af;
  font-size: 11px;
}

/* Ações aparecem no hover */
.notes-item-actions[data-v-1c8bb8c6] {
  display: flex;
  gap: 4px;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.notes-item:hover .notes-item-actions[data-v-1c8bb8c6] {
  opacity: 1;
}
.notes-action-btn[data-v-1c8bb8c6] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #9ca3af;
}
.notes-action-btn[data-v-1c8bb8c6]:hover {
  background: #ffffff;
  color: #6b7280;
}
.notes-action-btn-danger[data-v-1c8bb8c6]:hover {
  background: #fee;
  color: #ef4444;
}
.notes-action-icon[data-v-1c8bb8c6] {
  width: 13px;
  height: 13px;
}

/* Empty State minimalista */
.notes-empty[data-v-1c8bb8c6] {
  text-align: center;
  padding: 24px 16px;
  color: #9ca3af;
}
.notes-empty-text[data-v-1c8bb8c6] {
  font-size: 13px;
  margin: 0;
  font-style: italic;
}
/* ============================================================
   KanbanCardLeadSidebar — minimalist slate refresh
   Paleta slate-only. Sem blocos coloridos (azul/amarelo decorativos).
   ============================================================ */

/* ---------- Sidebar container ---------- */
.pipeline-card-details-sidebar[data-v-f604c854] {
  width: 320px;
  min-width: 260px;
  max-width: 320px;
  flex-shrink: 0;
  background: #ffffff;
  border-left: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  position: relative;
  /* visible: o toggle (chevron) precisa escapar pra fora do edge esquerdo
     sem ser clipado. Scroll acontece em .pipeline-card-details-sidebar-content */
  overflow: visible;
  color: #0f172a;
  box-shadow: none;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              min-width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pipeline-card-details-sidebar[data-v-f604c854]::-webkit-scrollbar {
  width: 3px;
}
.pipeline-card-details-sidebar[data-v-f604c854]::-webkit-scrollbar-track {
  background: transparent;
}
.pipeline-card-details-sidebar[data-v-f604c854]::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 2px;
}
.pipeline-card-details-sidebar[data-v-f604c854]::-webkit-scrollbar-thumb:hover {
  background: #cbd5e1;
}
.pipeline-card-details-sidebar-content[data-v-f604c854] {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}
.pipeline-card-details-sidebar-content[data-v-f604c854]::-webkit-scrollbar {
  width: 3px;
}
.pipeline-card-details-sidebar-content[data-v-f604c854]::-webkit-scrollbar-track {
  background: transparent;
}
.pipeline-card-details-sidebar-content[data-v-f604c854]::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 2px;
}

/* ---------- Section & Accordion ---------- */
.pipeline-card-details-section[data-v-f604c854] {
  border-bottom: 1px solid #f1f5f9;
}
.pipeline-card-details-accordion-header[data-v-f604c854] {
  width: 100%;
  border: none;
  background: #ffffff;
  padding: 14px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 160ms ease;
}
.pipeline-card-details-accordion-header[data-v-f604c854]:hover {
  background: transparent;
}
.pipeline-card-details-accordion-title-group[data-v-f604c854] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pipeline-card-details-accordion-title[data-v-f604c854] {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}
.pipeline-card-details-accordion-badge[data-v-f604c854] {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
}
.pipeline-card-details-accordion-arrow[data-v-f604c854] {
  font-size: 13px;
  color: #94a3b8;
  transition: transform 160ms ease;
}
.pipeline-card-details-section.is-expanded .pipeline-card-details-accordion-arrow[data-v-f604c854] {
  transform: rotate(180deg);
}
.pipeline-card-details-header-action[data-v-f604c854] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  color: #64748b;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}
.pipeline-card-details-header-action[data-v-f604c854]:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.pipeline-card-details-accordion-body[data-v-f604c854] {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.pipeline-card-details-section.is-expanded .pipeline-card-details-accordion-body[data-v-f604c854] {
  max-height: 1200px;
  overflow: visible;
}
.pipeline-card-details-accordion-inner[data-v-f604c854] {
  padding: 0 16px 14px;
}

/* ---------- Lead content (contact details) ---------- */
.pipeline-card-details-lead-content[data-v-f604c854] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pipeline-card-details-contact-card[data-v-f604c854] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.pipeline-card-details-contact-card:hover .pipeline-card-details-edit-icon[data-v-f604c854] {
  opacity: 1;
}
.pipeline-card-details-contact-avatar[data-v-f604c854] {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 11px;
  flex-shrink: 0;
  margin-left: 0;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 2px #dbeafe;
}
.pipeline-card-details-contact-info[data-v-f604c854] {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pipeline-card-details-contact-info .pipeline-card-details-input-wrapper[data-v-f604c854] {
  width: 100%;
}
.pipeline-card-details-contact-info .pipeline-card-details-edit-icon[data-v-f604c854] {
  opacity: 0;
  transition: opacity 160ms ease;
}
.pipeline-card-details-contact-name[data-v-f604c854] {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pipeline-card-details-contact-details[data-v-f604c854] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pipeline-card-details-contact-item[data-v-f604c854] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}
.pipeline-card-details-contact-item:hover .pipeline-card-details-edit-icon[data-v-f604c854] {
  opacity: 1;
}
.pipeline-card-details-contact-item > i.fi-rr-envelope[data-v-f604c854],
.pipeline-card-details-contact-item > i.fi-rr-phone-call[data-v-f604c854] {
  flex-shrink: 0;
  color: #94a3b8;
  font-size: 13px;
  width: 16px;
  text-align: center;
  margin-top: 3px;
  display: inline-block;
}
.pipeline-card-details-contact-item span[data-v-f604c854] {
  flex: 1;
  font-size: 12px;
  color: #334155;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pipeline-card-details-contact-item .pipeline-card-details-edit-icon[data-v-f604c854] {
  opacity: 0;
  transition: opacity 160ms ease;
}

/* ---------- Info row (lead details with icon) ---------- */
.pipeline-card-details-info-row[data-v-f604c854] {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 0;
}
.pipeline-card-details-info-icon[data-v-f604c854] {
  width: 20px;
  color: #94a3b8;
  margin-top: 2px;
  text-align: center;
  font-size: 13px;
  flex-shrink: 0;
}
.pipeline-card-details-info-content[data-v-f604c854] {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pipeline-card-details-info-label[data-v-f604c854] {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 600;
}
.pipeline-card-details-info-value[data-v-f604c854] {
  margin: 0;
  font-size: 13px;
  color: #0f172a;
  font-weight: 500;
}
.pipeline-card-details-inline-value[data-v-f604c854] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #0f172a;
  font-weight: 500;
}

/* ---------- Meta dates (under contact info) ---------- */
.pipeline-card-details-meta-dates[data-v-f604c854] {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pipeline-card-details-meta-dates p[data-v-f604c854] {
  margin: 0;
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.4;
  font-weight: 500;
}
.pipeline-card-details-meta-dates i[data-v-f604c854] {
  margin-right: 4px;
  color: #cbd5e1;
}

/* ---------- Custom fields block (no more blue tint) ---------- */
.pipeline-card-details-custom-fields-block[data-v-f604c854] {
  border-top: 1px solid #f1f5f9;
  padding-top: 8px;
}
.pipeline-card-details-block-title[data-v-f604c854] {
  font-size: 10px;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.pipeline-card-details-custom-fields-section[data-v-f604c854] {
  flex-shrink: 0;
}
.pipeline-card-details-custom-fields-wrapper[data-v-f604c854] {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}
.pipeline-card-details-custom-fields[data-v-f604c854] {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pipeline-card-details-custom-fields--expanded[data-v-f604c854] {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}
.pipeline-card-details-custom-fields--expanded[data-v-f604c854]::-webkit-scrollbar {
  width: 4px;
}
.pipeline-card-details-custom-fields--expanded[data-v-f604c854]::-webkit-scrollbar-track {
  background: transparent;
}
.pipeline-card-details-custom-fields--expanded[data-v-f604c854]::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 2px;
}
.pipeline-card-details-custom-field-item[data-v-f604c854] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
  border: none;
  border-bottom: 1px dashed #f1f5f9;
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
}
.pipeline-card-details-custom-field-item[data-v-f604c854]:last-child {
  border-bottom: none;
}
.pipeline-card-details-custom-field-item:hover .pipeline-card-details-edit-icon[data-v-f604c854] {
  opacity: 1;
}
.pipeline-card-details-custom-field-label[data-v-f604c854] {
  font-size: 10px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pipeline-card-details-custom-field-value[data-v-f604c854] {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pipeline-card-details-field-value-text[data-v-f604c854] {
  flex: 1;
  font-size: 13px;
  color: #0f172a;
  font-weight: 500;
  word-break: break-word;
}
.pipeline-card-details-field-value-placeholder[data-v-f604c854] {
  color: #94a3b8;
  font-weight: 400;
  font-style: italic;
}
.pipeline-card-details-custom-field-value .pipeline-card-details-edit-icon[data-v-f604c854] {
  opacity: 0;
  transition: opacity 160ms ease;
}
.pipeline-card-details-show-more-btn[data-v-f604c854] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0 0;
  background: none;
  border: none;
  color: #2563eb;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: color 160ms ease;
}
.pipeline-card-details-show-more-btn[data-v-f604c854]:hover {
  color: #1d4ed8;
  text-decoration: none;
}
.pipeline-card-details-show-more-btn i[data-v-f604c854] {
  font-size: 11px;
}

/* ---------- No-lead message ---------- */
.pipeline-card-details-no-lead-message[data-v-f604c854] {
  font-size: 12px;
  color: #94a3b8;
  font-style: italic;
  margin: 0;
  padding: 8px 0;
}

/* ---------- Tags ---------- */
.pipeline-card-details-tags-section[data-v-f604c854] {
  flex-shrink: 0;
}
.pipeline-card-details-tags-container[data-v-f604c854] {
  position: relative;
  min-height: 32px;
}
.pipeline-card-details-tags-container[data-v-f604c854] .tag-selector,
.pipeline-card-details-tags-container .tag-selector[data-v-f604c854] {
  width: 100%;
}
.pipeline-card-details-tags-container[data-v-f604c854] .tags-container,
.pipeline-card-details-tags-container .tags-container[data-v-f604c854] {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  min-height: 28px;
}
.pipeline-card-details-tags-container[data-v-f604c854] .tag-chip,
.pipeline-card-details-tags-container .tag-chip[data-v-f604c854] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid;
  background: #ffffff;
  max-width: 150px;
}
.pipeline-card-details-tags-container[data-v-f604c854] .tag-chip-label,
.pipeline-card-details-tags-container .tag-chip-label[data-v-f604c854] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}
.pipeline-card-details-tags-container[data-v-f604c854] .tag-chip-remove,
.pipeline-card-details-tags-container .tag-chip-remove[data-v-f604c854] {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: currentColor;
  opacity: 0.6;
  font-size: 14px;
  line-height: 1;
}
.pipeline-card-details-tags-container[data-v-f604c854] .tag-chip-remove:hover,
.pipeline-card-details-tags-container .tag-chip-remove[data-v-f604c854]:hover {
  opacity: 1;
}
.pipeline-card-details-tags-container[data-v-f604c854] .insert-tag-button,
.pipeline-card-details-tags-container .insert-tag-button[data-v-f604c854] {
  background: transparent;
  border: 1px dashed #e5e7eb;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  color: #64748b;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
  font-weight: 500;
}
.pipeline-card-details-tags-container[data-v-f604c854] .insert-tag-button:hover,
.pipeline-card-details-tags-container .insert-tag-button[data-v-f604c854]:hover {
  border-color: #0f172a;
  color: #0f172a;
  background: transparent;
}
.pipeline-card-details-tags-container[data-v-f604c854] .tag-counter,
.pipeline-card-details-tags-container .tag-counter[data-v-f604c854] {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px 8px;
  border-radius: 6px;
  background: #f1f5f9;
  font-size: 11px;
  color: #64748b;
  cursor: pointer;
}
.pipeline-card-details-tags-container[data-v-f604c854] .tag-counter:hover,
.pipeline-card-details-tags-container .tag-counter[data-v-f604c854]:hover {
  background: #e2e8f0;
}
.pipeline-card-details-tags-container[data-v-f604c854] .tag-selector-dropdown,
.pipeline-card-details-tags-container .tag-selector-dropdown[data-v-f604c854] {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  z-index: 1000;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.12);
  max-height: 280px;
  overflow: hidden;
}
.pipeline-card-details-tags-container[data-v-f604c854] .combo-box,
.pipeline-card-details-tags-container .combo-box[data-v-f604c854] {
  width: 100%;
}
.pipeline-card-details-tags-container[data-v-f604c854] .combo-box-input,
.pipeline-card-details-tags-container .combo-box-input[data-v-f604c854] {
  font-size: 12px;
  padding: 8px 10px;
  border: none;
  border-bottom: 1px solid #f1f5f9;
  width: 100%;
  outline: none;
}
.pipeline-card-details-tags-container[data-v-f604c854] .combo-box-options,
.pipeline-card-details-tags-container .combo-box-options[data-v-f604c854] {
  max-height: 200px;
  overflow-y: auto;
}
.pipeline-card-details-tags-container[data-v-f604c854] .combo-box-option,
.pipeline-card-details-tags-container .combo-box-option[data-v-f604c854] {
  padding: 8px 10px;
  cursor: pointer;
  font-size: 12px;
  transition: background 120ms ease;
}
.pipeline-card-details-tags-container[data-v-f604c854] .combo-box-option:hover,
.pipeline-card-details-tags-container .combo-box-option[data-v-f604c854]:hover {
  background: #f8fafc;
}
.pipeline-card-details-section[data-v-f604c854] .tag-selector,
.pipeline-card-details-section .tag-selector[data-v-f604c854] {
  width: 100%;
}
.pipeline-card-details-section[data-v-f604c854] .tags-container,
.pipeline-card-details-section .tags-container[data-v-f604c854] {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pipeline-card-details-section[data-v-f604c854] .tag-chip,
.pipeline-card-details-section .tag-chip[data-v-f604c854] {
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11px;
  border-width: 1px;
}

/* ---------- Notes ---------- */
.pipeline-card-details-notes-section[data-v-f604c854] {
  flex-shrink: 0;
}
.pipeline-card-details-notes-container[data-v-f604c854] {
  display: flex;
  flex-direction: column;
}
.pipeline-card-details-notes-container[data-v-f604c854] .notes-component,
.pipeline-card-details-notes-container .notes-component[data-v-f604c854] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pipeline-card-details-notes-container[data-v-f604c854] .notes-list,
.pipeline-card-details-notes-container .notes-list[data-v-f604c854] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pipeline-card-details-notes-container[data-v-f604c854] .note-item,
.pipeline-card-details-notes-container .note-item[data-v-f604c854] {
  padding: 10px 12px;
  background: transparent;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
}
.pipeline-card-details-notes-container[data-v-f604c854] .note-content,
.pipeline-card-details-notes-container .note-content[data-v-f604c854] {
  font-size: 12.5px;
  line-height: 1.5;
  color: #475569;
  font-style: normal;
}
.pipeline-card-details-notes-container[data-v-f604c854] textarea,
.pipeline-card-details-notes-container textarea[data-v-f604c854] {
  min-height: 50px;
  font-size: 13px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  resize: none;
}
.pipeline-card-details-notes-container[data-v-f604c854] textarea:focus,
.pipeline-card-details-notes-container textarea[data-v-f604c854]:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
  outline: none;
}

/* ---------- Footer (last modified) ---------- */
.pipeline-card-details-footer[data-v-f604c854] {
  margin-top: auto;
  padding: 12px 16px;
  flex-shrink: 0;
  border-top: 1px solid #f1f5f9;
  background: #fafbfc;
}
.pipeline-card-details-last-modified[data-v-f604c854] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pipeline-card-details-modifier-avatar[data-v-f604c854] {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
}
.pipeline-card-details-modified-info[data-v-f604c854] {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.pipeline-card-details-modified-label[data-v-f604c854] {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pipeline-card-details-modified-value[data-v-f604c854] {
  font-size: 12px;
  color: #475569;
}
.pipeline-card-details-modified-value strong[data-v-f604c854] {
  color: #0f172a;
  font-weight: 600;
}

/* ---------- Empty state ---------- */
.pipeline-card-details-empty-state[data-v-f604c854] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  color: #94a3b8;
}
.pipeline-card-details-empty-state i[data-v-f604c854] {
  font-size: 14px;
  color: #cbd5e1;
}
.pipeline-card-details-empty-state span[data-v-f604c854] {
  font-size: 12px;
  font-style: italic;
}

/* ---------- Edit controls ---------- */
.pipeline-card-details-edit-icon[data-v-f604c854] {
  color: #cbd5e1;
  font-size: 12px;
  cursor: pointer;
  transition: color 160ms ease, opacity 160ms ease;
  flex-shrink: 0;
  padding: 2px;
}
.pipeline-card-details-edit-icon[data-v-f604c854]:hover {
  color: #0f172a;
}
.pipeline-card-details-input-wrapper[data-v-f604c854] {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.pipeline-card-details-input-wrapper[data-v-f604c854] .input-default-ui-wrapper,
.pipeline-card-details-input-wrapper .input-default-ui-wrapper[data-v-f604c854] {
  flex: 1;
  margin: 0;
  gap: 0;
}
.pipeline-card-details-input-wrapper[data-v-f604c854] .input-default-ui-label,
.pipeline-card-details-input-wrapper .input-default-ui-label[data-v-f604c854] {
  display: none !important;
}
.pipeline-card-details-input-wrapper[data-v-f604c854] .input-default-ui-container,
.pipeline-card-details-input-wrapper .input-default-ui-container[data-v-f604c854] {
  min-height: 32px;
}
.pipeline-card-details-input-wrapper[data-v-f604c854] .input-default-ui-input,
.pipeline-card-details-input-wrapper .input-default-ui-input[data-v-f604c854] {
  font-size: 12px;
}
.pipeline-card-details-input-actions[data-v-f604c854] {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.pipeline-card-details-input-actions .pipeline-card-details-action-icon[data-v-f604c854] {
  font-size: 13px;
  cursor: pointer;
  padding: 5px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 160ms ease, color 160ms ease;
  width: 24px;
  height: 24px;
}
.pipeline-card-details-input-actions .pipeline-card-details-action-check[data-v-f604c854] {
  color: #047857;
  background: transparent;
}
.pipeline-card-details-input-actions .pipeline-card-details-action-check[data-v-f604c854]:hover {
  background: #ecfdf5;
  color: #065f46;
}
.pipeline-card-details-input-actions .pipeline-card-details-action-cancel[data-v-f604c854] {
  color: #b91c1c;
  background: transparent;
}
.pipeline-card-details-input-actions .pipeline-card-details-action-cancel[data-v-f604c854]:hover {
  background: #fef2f2;
  color: #991b1b;
}

/* ---------- Loading ---------- */
.pipeline-card-details-loading-container[data-v-f604c854] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 10px;
}
.pipeline-card-details-loading-compact[data-v-f604c854] {
  padding: 12px 0;
}
.pipeline-card-details-spinner[data-v-f604c854] {
  width: 16px;
  height: 16px;
  border: 2px solid #f1f5f9;
  border-top-color: #0f172a;
  border-radius: 50%;
  animation: pipeline-card-details-spin-f604c854 0.7s linear infinite;
}
@keyframes pipeline-card-details-spin-f604c854 {
to { transform: rotate(360deg);
}
}
.pipeline-card-details-loading-text[data-v-f604c854] {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
}

/* ---------- Tasks ---------- */
.pipeline-card-details-task-list[data-v-f604c854] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pipeline-card-details-task-filters[data-v-f604c854] {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}
.pipeline-card-details-task-filter-btn[data-v-f604c854] {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 600;
  background: #f1f5f9;
  color: #64748b;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background-color 160ms ease, color 160ms ease;
}
.pipeline-card-details-task-filter-btn[data-v-f604c854]:hover {
  background: #e2e8f0;
  color: #0f172a;
}
.pipeline-card-details-task-filter-btn.is-active[data-v-f604c854] {
  background: #dbeafe;
  color: #1d4ed8;
}
.pipeline-card-details-task-card[data-v-f604c854] {
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 0;
  box-shadow: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}
.pipeline-card-details-task-card[data-v-f604c854]:hover {
  box-shadow: none;
  transform: none;
  border-color: #e5e7eb;
  background-color: #ffffff;
}
.pipeline-card-details-task-header[data-v-f604c854] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}
.pipeline-card-details-task-title[data-v-f604c854] {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  padding-right: 2rem;
}
.pipeline-card-details-task-header-actions[data-v-f604c854] {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.pipeline-card-details-task-icon-btn[data-v-f604c854] {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: none;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #94a3b8;
  transition: color 160ms ease, background-color 160ms ease;
}
.pipeline-card-details-task-icon-btn i[data-v-f604c854] {
  font-size: 0.85rem;
}
.pipeline-card-details-task-icon-btn[data-v-f604c854]:hover {
  color: #0f172a;
  background-color: #f1f5f9;
}
.pipeline-card-details-task-actions[data-v-f604c854] {
  display: flex;
  gap: 0.5rem;
  color: #94a3b8;
}
.pipeline-card-details-task-meta[data-v-f604c854] {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.7rem;
  color: #64748b;
  margin-top: 0.5rem;
}
.pipeline-card-details-task-tag[data-v-f604c854] {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background-color: #f1f5f9;
  color: #64748b;
  font-weight: 600;
  padding: 2px 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pipeline-card-details-task-status-badge[data-v-f604c854] {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pipeline-card-details-task-status--pending[data-v-f604c854] {
  background-color: #fffbeb;
  color: #92400e;
}
.pipeline-card-details-task-status--done[data-v-f604c854] {
  background-color: #ecfdf5;
  color: #047857;
}
.pipeline-card-details-task-status--cancelled[data-v-f604c854] {
  background-color: #f1f5f9;
  color: #64748b;
}
.pipeline-card-details-task-status--expired[data-v-f604c854] {
  background-color: #fef2f2;
  color: #b91c1c;
}
.pipeline-card-details-task-date[data-v-f604c854] {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 6px;
  background-color: #fef2f2;
  color: #b91c1c;
  font-weight: 500;
  padding: 2px 8px;
  font-size: 11px;
}
.pipeline-card-details-task-date i[data-v-f604c854] {
  font-size: 0.7rem;
}
.pipeline-card-details-task-buttons[data-v-f604c854] {
  display: none;
}
.pipeline-card-details-btn-task[data-v-f604c854] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: 999px;
  border: none;
  padding: 0.25rem 0.6rem;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 160ms ease, color 160ms ease;
}
.pipeline-card-details-btn-task-delete[data-v-f604c854] {
  color: #b91c1c;
}
.pipeline-card-details-btn-task-delete[data-v-f604c854]:hover {
  color: #991b1b;
  background-color: #fef2f2;
}
.pipeline-card-details-btn-task-complete[data-v-f604c854] {
  color: #047857;
}
.pipeline-card-details-btn-task-complete[data-v-f604c854]:hover {
  color: #065f46;
  background-color: #ecfdf5;
}
.pipeline-card-details-task-footer[data-v-f604c854] {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.pipeline-card-details-task-footer-date[data-v-f604c854] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
}
.pipeline-card-details-task-date--overdue[data-v-f604c854] {
  color: #b91c1c;
}
.pipeline-card-details-task-footer-date i[data-v-f604c854] {
  font-size: 0.75rem;
}
.pipeline-card-details-task-footer-actions[data-v-f604c854] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pipeline-card-details-task-footer-icon[data-v-f604c854] {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: transparent;
  color: #64748b;
  transition: background-color 160ms ease, color 160ms ease;
}
.pipeline-card-details-task-footer-icon i[data-v-f604c854] {
  font-size: 0.85rem;
}
.pipeline-card-details-task-footer-icon[data-v-f604c854]:hover {
  background-color: #f1f5f9;
  color: #0f172a;
}
.pipeline-card-details-task-footer-icon--delete[data-v-f604c854] {
  color: #b91c1c;
}
.pipeline-card-details-task-footer-icon--delete[data-v-f604c854]:hover {
  color: #991b1b;
  background-color: #fef2f2;
}
.pipeline-card-details-task-footer-icon--complete[data-v-f604c854] {
  color: #047857;
}
.pipeline-card-details-task-footer-icon--complete[data-v-f604c854]:hover {
  color: #065f46;
  background-color: #ecfdf5;
}
.pipeline-card-details-btn-view-all[data-v-f604c854] {
  width: 100%;
  margin-top: 8px;
  border: 1px dashed #e5e7eb;
  border-radius: 8px;
  background: transparent;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 6px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  transition: border-color 160ms ease, color 160ms ease;
}
.pipeline-card-details-btn-view-all[data-v-f604c854]:hover {
  border-color: #0f172a;
  color: #0f172a;
}

/* ---------- Responsive ---------- */
@media (max-width: 1440px) {
.pipeline-card-details-sidebar[data-v-f604c854] {
    width: 300px;
    min-width: 260px;
    max-width: 300px;
}
}
@media (max-width: 1100px) {
.pipeline-card-details-sidebar[data-v-f604c854] {
    display: none;
}
}
@media (max-width: 768px) {
.pipeline-card-details-sidebar[data-v-f604c854] {
    display: flex;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    border-left: none;
    border-top: 1px solid #f1f5f9;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.pipeline-card-details-sidebar.is-visible[data-v-f604c854] {
    transform: translateX(0);
}
.pipeline-card-details-accordion-title[data-v-f604c854] {
    font-size: 11px;
}
.pipeline-card-details-contact-name[data-v-f604c854] {
    font-size: 12px;
}
.pipeline-card-details-task-title[data-v-f604c854] {
    font-size: 12px;
}
}
@media (max-width: 480px) {
.pipeline-card-details-accordion-header[data-v-f604c854] {
    padding: 12px 14px 10px;
}
.pipeline-card-details-accordion-inner[data-v-f604c854] {
    padding: 0 14px 12px;
}
.pipeline-card-details-accordion-title[data-v-f604c854] {
    font-size: 10px;
}
.pipeline-card-details-footer[data-v-f604c854] {
    padding: 10px 14px;
}
}

/* ---------- Collapsed state ---------- */
.pipeline-card-details-sidebar--collapsed[data-v-f604c854] {
  width: 36px !important;
  min-width: 36px !important;
  max-width: 36px !important;
  padding: 0 !important;
  overflow: visible !important;
  border-left: 1px solid #f1f5f9 !important;
  align-items: center !important;
}
.pipeline-card-details-sidebar--collapsed .pipeline-card-details-sidebar-content[data-v-f604c854] {
  opacity: 0;
  pointer-events: none;
  width: 0;
  overflow: hidden;
  flex-shrink: 0;
}
.pipeline-card-details-lead-collapsed-icons[data-v-f604c854] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 44px 0 8px;
  width: 36px;
  flex-shrink: 0;
}
.pipeline-card-details-lead-collapsed-icon[data-v-f604c854] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: #64748b;
  cursor: default;
  transition: background-color 160ms ease, color 160ms ease;
  flex-shrink: 0;
}
.pipeline-card-details-lead-collapsed-icon[data-v-f604c854]:hover {
  background-color: #eff6ff;
  color: #2563eb;
}
.pipeline-card-details-lead-collapsed-icon i[data-v-f604c854] {
  font-size: 0.85rem;
  line-height: 1;
}

/* ---------- Toggle button ---------- */
.pipeline-card-details-lead-toggle-positioner[data-v-f604c854] {
  position: absolute;
  left: -13px;
  top: 4rem;
  z-index: 40;
}
.pipeline-card-details-lead-toggle-positioner--strip[data-v-f604c854] {
  left: 50%;
  transform: translateX(-50%);
  top: 0.75rem;
}
.pipeline-card-details-lead-toggle-btn[data-v-f604c854] {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  box-shadow: 0 2px 6px -1px rgba(15, 23, 42, 0.10), 0 1px 2px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
  color: #64748b;
  outline: none;
  cursor: pointer;
}
.pipeline-card-details-lead-toggle-btn--strip[data-v-f604c854] {
  border-color: #dbeafe;
  background-color: #eff6ff;
  color: #2563eb;
  box-shadow: 0 2px 6px -1px rgba(37, 99, 235, 0.15), 0 1px 2px rgba(15, 23, 42, 0.04);
}
.pipeline-card-details-lead-toggle-btn[data-v-f604c854]:hover {
  box-shadow: 0 4px 10px -2px rgba(15, 23, 42, 0.14), 0 2px 4px rgba(15, 23, 42, 0.06);
  border-color: #93c5fd;
  background-color: #eff6ff;
  color: #2563eb;
}
.pipeline-card-details-lead-toggle-btn[data-v-f604c854]:focus {
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.15);
}
.pipeline-card-details-lead-toggle-icon[data-v-f604c854] {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pipeline-card-details-lead-toggle-icon--rotated[data-v-f604c854] {
  transform: rotate(180deg);
}
.pipeline-card-details-lead-toggle-btn:hover .pipeline-card-details-lead-toggle-icon--rotated[data-v-f604c854] {
  transform: rotate(180deg);
}

/* ---------- Transition classes ---------- */
.lead-sidebar-toggle-enter-active[data-v-f604c854] {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.lead-sidebar-toggle-enter-from[data-v-f604c854] {
  opacity: 0;
  transform: scale(0.85);
}
.lead-sidebar-toggle-enter-to[data-v-f604c854] {
  opacity: 1;
  transform: scale(1);
}
.lead-sidebar-toggle-leave-active[data-v-f604c854] {
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.lead-sidebar-toggle-leave-from[data-v-f604c854] {
  opacity: 1;
  transform: scale(1);
}
.lead-sidebar-toggle-leave-to[data-v-f604c854] {
  opacity: 0;
  transform: scale(0.85);
}

/* Override ComboBox dropdown to use absolute positioning inside this sidebar.
   The global combo-dropdown uses position:fixed (viewport-relative), but here
   a CSS transform on an ancestor breaks fixed positioning. Using absolute keeps
   it relative to the .combo-box trigger instead. */
[data-v-f604c854] .combo-box {
  position: relative;
}
[data-v-f604c854] .combo-dropdown {
  position: absolute !important;
  top: 100% !important;
  bottom: auto !important;
  left: 0 !important;
  right: auto !important;
  margin-top: 6px !important;
  width: 100% !important;
  min-width: unset !important;
  max-width: unset !important;
}
.pipeline-card-details-task-date--overdue[data-v-f604c854] {
  color: #ef4444;
}
.pipeline-card-details-field-value-rich[data-v-f604c854] {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.cf-bool-pill[data-v-f604c854] {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid;
}
.cf-bool-pill--true[data-v-f604c854] {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.3);
}
.cf-bool-pill--false[data-v-f604c854] {
  background: #f3f4f6;
  color: #6b7280;
  border-color: #e5e7eb;
}
.cf-chips-wrap[data-v-f604c854] {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}
.cf-chip[data-v-f604c854] {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cf-chip--more[data-v-f604c854] {
  background: #f3f4f6;
  color: #6b7280;
  border-color: #e5e7eb;
  cursor: default;
}

.interactive-table-header-text[data-v-d4596e97] { font-size: 14px;}
.interactive-table-emails .email-from[data-v-d4596e97] { display:flex; flex-direction:column;
}
.email-from-name[data-v-d4596e97] { font-weight:600; font-size: 12px;}
.email-from-address[data-v-d4596e97] { font-size:12px; color:#6b7684;
}
.email-subject[data-v-d4596e97] { font-weight:500; font-size: 12px;
}
.email-actions button[data-v-d4596e97] { margin-left:8px; padding:6px 8px; border-radius:6px;
}
.email-actions .danger[data-v-d4596e97] { background:#ef4444;color:white;border:none;
}
.email-status[data-v-d4596e97] { font-size:12px; padding:4px 8px; border-radius:6px; background:#f3f4f6;
}
.email-date[data-v-d4596e97] { font-size: 12px;}

/* Empty State */
.empty-state[data-v-d4596e97] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
}
.empty-icon[data-v-d4596e97] {
  color: #d1d5db;
  margin-bottom: 16px;
}
.empty-title[data-v-d4596e97] {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 8px 0;
}
.empty-description[data-v-d4596e97] {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.kanban-history[data-v-11e03944] {
  width: 100%;
  background: transparent;
}
.kanban-history-header[data-v-11e03944] {
  margin-bottom: 16px;
}
.kanban-history-title[data-v-11e03944] {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 4px 0;
}
.kanban-history-subtitle[data-v-11e03944] {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

/* ----- Cell: Etapa ----- */
.kanban-history-stage-info[data-v-11e03944] {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.kanban-history-stage-name[data-v-11e03944] {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kanban-history-current-badge[data-v-11e03944] {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

/* ----- Cell: Valor ----- */
.kanban-history-value-amount[data-v-11e03944] {
  font-size: 13px;
  font-weight: 600;
  color: #047857;
  font-variant-numeric: tabular-nums;
}
.kanban-history-value-empty[data-v-11e03944] {
  color: #94a3b8;
  font-style: italic;
  font-size: 13px;
}

/* ----- Cell: Duração ----- */
.kanban-history-duration-text[data-v-11e03944] {
  font-size: 13px;
  color: #475569;
  font-variant-numeric: tabular-nums;
}

/* ----- Cell: Modificado por ----- */
.kanban-history-user-info[data-v-11e03944] {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.kanban-history-user-avatar[data-v-11e03944] {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #1e293b;
  background-color: #e2e8f0;
  flex-shrink: 0;
  cursor: help;
}
.kanban-history-user-datetime[data-v-11e03944] {
  display: flex;
  gap: 6px;
  align-items: center;
  min-width: 0;
}
.kanban-history-user-date[data-v-11e03944],
.kanban-history-user-time[data-v-11e03944] {
  font-size: 12px;
  color: #475569;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ----- Paginacao (dentro do slot footer do ListViewDefault) ----- */
.kanban-history-pagination[data-v-11e03944] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.kanban-history-pagination-info[data-v-11e03944] {
  font-size: 12px;
  color: #64748b;
  font-variant-numeric: tabular-nums;
}

/* ----- Erro (fora do ListView) ----- */
.kanban-history-error[data-v-11e03944] {
  margin-top: 12px;
  padding: 24px 16px;
  text-align: center;
  color: #64748b;
  background: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: 8px;
}
.kanban-history-error p[data-v-11e03944] {
  margin: 0;
  font-size: 13px;
  color: #b91c1c;
}
.kanban-history-error button[data-v-11e03944] {
  margin-top: 12px;
  padding: 6px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #ffffff;
  color: #0f172a;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}
.kanban-history-error button[data-v-11e03944]:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

/* ----- Responsivo ----- */
@media (max-width: 768px) {
.kanban-history-user-datetime[data-v-11e03944] {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
}
.kanban-card-tickets[data-v-19e4bed1] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
  width: 100%;
}

/* HSM Section */
.hsm-section[data-v-19e4bed1] {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #bae6fd;
}
.hsm-header[data-v-19e4bed1] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.hsm-title[data-v-19e4bed1] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #0c4a6e;
}
.hsm-title i[data-v-19e4bed1] {
  font-size: 18px;
  color: #0284c7;
}
.btn-toggle[data-v-19e4bed1] {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: #0284c7;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-toggle[data-v-19e4bed1]:hover:not(:disabled) {
  background: #0369a1;
  box-shadow: 0 3px 10px rgba(2, 132, 199, 0.25);
}
.btn-toggle[data-v-19e4bed1]:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  opacity: 0.6;
}
.btn-toggle i[data-v-19e4bed1] {
  font-size: 15px;
}

/* Form */
.form-wrapper[data-v-19e4bed1] {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-group[data-v-19e4bed1] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label[data-v-19e4bed1] {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #0c4a6e;
}
.form-label i[data-v-19e4bed1] {
  font-size: 15px;
  color: #0284c7;
}
.select-btn[data-v-19e4bed1] {
  width: 100%;
  padding: 10px 12px;
  background: white;
  border: 2px dashed #bae6fd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}
.select-btn[data-v-19e4bed1]:hover {
  border-color: #0284c7;
  background: #f9fefb;
}
.select-btn.has-template[data-v-19e4bed1] {
  border-style: solid;
  border-color: #0284c7;
}
.placeholder[data-v-19e4bed1] {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 12px;
}
.placeholder i[data-v-19e4bed1] {
  font-size: 16px;
}
.template-info[data-v-19e4bed1] {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.template-name[data-v-19e4bed1] {
  font-size: 13px;
  font-weight: 600;
  color: #0c4a6e;
}
.template-cat[data-v-19e4bed1] {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
}

/* Template Preview Box */
.template-preview-box[data-v-19e4bed1] {
  margin-top: 8px;
  background: white;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #e5e7eb;
}
.preview-label[data-v-19e4bed1] {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
}
.preview-label i[data-v-19e4bed1] {
  font-size: 15px;
  color: #6b7280;
}
.preview-container[data-v-19e4bed1] {
  background: #f9fafb;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.template-badge[data-v-19e4bed1] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: #dbeafe;
  color: #1e40af;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  align-self: flex-start;
}
.template-badge i[data-v-19e4bed1] {
  font-size: 13px;
}

/* Deep styling for HsmPreview inside preview */
.preview-container[data-v-19e4bed1] .hsm-preview {
  max-width: 100%;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.preview-container[data-v-19e4bed1] .hsm-preview__content {
  gap: 10px;
}
.preview-container[data-v-19e4bed1] .hsm-preview__header {
  font-size: 14px;
  color: #0c4a6e;
}
.preview-container[data-v-19e4bed1] .hsm-preview__body {
  font-size: 13px;
  color: #334155;
  line-height: 1.6;
}
.preview-container[data-v-19e4bed1] .hsm-preview__footer {
  font-size: 12px;
  color: #64748b;
}
.preview-container[data-v-19e4bed1] .hsm-preview__button {
  font-size: 12px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}
.preview-container[data-v-19e4bed1] .hsm-preview__image,
.preview-container[data-v-19e4bed1] .hsm-preview__video {
  max-width: 100%;
  width: 100%;
  border-radius: 6px;
}
.preview-container[data-v-19e4bed1] .hsm-preview__media {
  margin-bottom: 8px;
}

/* Actions */
.actions[data-v-19e4bed1] {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding-top: 6px;
}
.btn[data-v-19e4bed1] {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn i[data-v-19e4bed1] {
  font-size: 14px;
}
.btn-cancel[data-v-19e4bed1] {
  background: white;
  color: #64748b;
  border: 1px solid #e2e8f0;
}
.btn-cancel[data-v-19e4bed1]:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}
.btn-send[data-v-19e4bed1] {
  background: #0284c7;
  color: white;
}
.btn-send[data-v-19e4bed1]:hover:not(:disabled) {
  background: #0369a1;
  box-shadow: 0 3px 10px rgba(2, 132, 199, 0.25);
}
.btn-send[data-v-19e4bed1]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.bx-spin[data-v-19e4bed1] {
  animation: spin-19e4bed1 1s linear infinite;
}
@keyframes spin-19e4bed1 {
from { transform: rotate(0deg);
}
to { transform: rotate(360deg);
}
}

/* Transitions */
.slide-fade-enter-active[data-v-19e4bed1], .slide-fade-leave-active[data-v-19e4bed1] {
  transition: all 0.25s ease;
}
.slide-fade-enter-from[data-v-19e4bed1] {
  opacity: 0;
  transform: translateY(-8px);
}
.slide-fade-leave-to[data-v-19e4bed1] {
  opacity: 0;
  transform: translateY(-8px);
}

/* Tickets */
.tickets-section[data-v-19e4bed1] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Messages History Section */
.messages-history-section[data-v-19e4bed1] {
  background: white;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  margin-bottom: 16px;
}
.section-header[data-v-19e4bed1] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
}
.section-header i[data-v-19e4bed1] {
  font-size: 18px;
  color: #6b7280;
}
.loading-state[data-v-19e4bed1] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 20px;
  color: #475569;
  font-size: 13px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.loading-state i.bx-spin[data-v-19e4bed1] {
  font-size: 26px;
  color: #0284c7;
  padding: 12px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.08);
  box-shadow: inset 0 0 0 2px rgba(2, 132, 199, 0.12);
}
.messages-list[data-v-19e4bed1] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.message-item[data-v-19e4bed1] {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.message-item[data-v-19e4bed1]:hover {
  border-color: #0284c7;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
  transform: translateY(-2px);
}
.message-meta[data-v-19e4bed1] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f3f4f6;
}
.message-sender[data-v-19e4bed1] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  color: #1f2937;
}
.message-sender i[data-v-19e4bed1] {
  font-size: 18px;
  color: #0284c7;
}
.message-date[data-v-19e4bed1] {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #9ca3af;
}
.message-date i[data-v-19e4bed1] {
  font-size: 14px;
}
.message-content[data-v-19e4bed1] {
  margin: 12px 0;
}
.hsm-message-wrapper[data-v-19e4bed1] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hsm-badge[data-v-19e4bed1] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(30, 64, 175, 0.1);
  max-width: 100%;
  word-break: break-word;
  cursor: help;
  transition: all 0.2s ease;
}
.hsm-badge[data-v-19e4bed1]:hover {
  background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
  box-shadow: 0 3px 6px rgba(30, 64, 175, 0.2);
  transform: translateY(-1px);
}
.hsm-badge i[data-v-19e4bed1] {
  font-size: 14px;
  flex-shrink: 0;
}
.hsm-badge span[data-v-19e4bed1] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}
.text-content[data-v-19e4bed1] {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #374151;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.6;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 3px solid #0284c7;
}
.text-content i[data-v-19e4bed1] {
  font-size: 16px;
  color: #0284c7;
  flex-shrink: 0;
  margin-top: 2px;
}
.file-attachment[data-v-19e4bed1] {
  margin-top: 12px;
  padding: 10px 12px;
  background: #f0f9ff;
  border-radius: 8px;
  border: 1px dashed #0284c7;
}
.file-attachment a[data-v-19e4bed1] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0284c7;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s;
}
.file-attachment a[data-v-19e4bed1]:hover {
  color: #0369a1;
  gap: 8px;
}
.file-attachment a i[data-v-19e4bed1] {
  font-size: 16px;
}
.message-footer[data-v-19e4bed1] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #f3f4f6;
  gap: 12px;
}
.status-badge[data-v-19e4bed1] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.2s;
}
.status-badge i[data-v-19e4bed1] {
  font-size: 14px;
}
.status-0[data-v-19e4bed1] {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.status-1[data-v-19e4bed1] {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
  border: 1px solid #93c5fd;
}
.status-2[data-v-19e4bed1] {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.status-3[data-v-19e4bed1] {
  background: linear-gradient(135deg, #c7d2fe 0%, #a5b4fc 100%);
  color: #3730a3;
  border: 1px solid #818cf8;
}
.message-id[data-v-19e4bed1] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #9ca3af;
  font-family: 'Courier New', monospace;
  background: #f9fafb;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
}
.message-id i[data-v-19e4bed1] {
  font-size: 12px;
}

/* Deep styling for HsmPreview inside messages */
.no-channel-message[data-v-19e4bed1],
.loading-message[data-v-19e4bed1],
.info-message[data-v-19e4bed1] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: #fef3c7;
  border-radius: 6px;
  border: 1px solid #fcd34d;
}
.info-message[data-v-19e4bed1] {
  background: #dbeafe;
  border-color: #bae6fd;
}
.no-channel-message i[data-v-19e4bed1],
.loading-message i[data-v-19e4bed1],
.info-message i[data-v-19e4bed1] {
  font-size: 18px;
  color: #92400e;
}
.info-message i[data-v-19e4bed1] {
  color: #0369a1;
}
.no-channel-message p[data-v-19e4bed1],
.loading-message p[data-v-19e4bed1],
.info-message p[data-v-19e4bed1] {
  margin: 0;
  font-size: 13px;
  color: #92400e;
  font-weight: 500;
}
.info-message p[data-v-19e4bed1] {
  color: #0c4a6e;
}
.empty-state[data-v-19e4bed1] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.empty-state p[data-v-19e4bed1] {
  font-size: 13px;
  color: #9ca3af;
  font-style: italic;
  margin: 0;
}
.tickets-list[data-v-19e4bed1] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ticket-item[data-v-19e4bed1] {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 12px;
  background: #fafafa;
  transition: all 0.2s;
}
.ticket-item[data-v-19e4bed1]:hover {
  border-color: #0096c7;
  box-shadow: 0 2px 8px rgba(0, 150, 199, 0.1);
}
.ticket-header[data-v-19e4bed1] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.ticket-id[data-v-19e4bed1] {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
}
.ticket-status[data-v-19e4bed1] {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 3px;
  text-transform: uppercase;
}
.status-aberto[data-v-19e4bed1] {
  background: #dbeafe;
  color: #1e40af;
}
.status-em-andamento[data-v-19e4bed1] {
  background: #fef3c7;
  color: #92400e;
}
.status-resolvido[data-v-19e4bed1] {
  background: #d1fae5;
  color: #065f46;
}
.status-fechado[data-v-19e4bed1] {
  background: #e5e7eb;
  color: #374151;
}
.ticket-title[data-v-19e4bed1] {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 6px 0;
}
.ticket-desc[data-v-19e4bed1] {
  font-size: 12px;
  color: #6b7280;
  margin: 0 0 8px 0;
  line-height: 1.4;
}
.ticket-footer[data-v-19e4bed1] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #9ca3af;
}
.ticket-date[data-v-19e4bed1] {
  font-weight: 500;
}
.ticket-assignee[data-v-19e4bed1] {
  font-weight: 500;
  color: #6b7280;
}

/* Notebooks compactos */
@media (max-width: 1024px) {
.message-item[data-v-19e4bed1] {
    padding: 14px;
}
.hsm-badge span[data-v-19e4bed1] {
    max-width: 200px;
}
}

/* Tablet portrait */
@media (max-width: 768px) {
.hsm-header[data-v-19e4bed1] {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.btn-toggle[data-v-19e4bed1] {
    width: 100%;
    justify-content: center;
}
.actions[data-v-19e4bed1] {
    flex-direction: column;
}
.btn[data-v-19e4bed1] {
    width: 100%;
    justify-content: center;
}
.message-item[data-v-19e4bed1] {
    padding: 12px;
}
.message-meta[data-v-19e4bed1] {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.message-footer[data-v-19e4bed1] {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.message-id[data-v-19e4bed1] {
    width: 100%;
    justify-content: center;
}
.text-content[data-v-19e4bed1] {
    font-size: 12px;
    padding: 10px;
}
.messages-history-section[data-v-19e4bed1] {
    padding: 10px;
}
}

/* Mobile */
@media (max-width: 640px) {
.message-item[data-v-19e4bed1] {
    padding: 10px;
    border-radius: 8px;
}
.hsm-section[data-v-19e4bed1] {
    padding: 10px;
}
.hsm-badge span[data-v-19e4bed1] {
    max-width: 150px;
}
.section-header[data-v-19e4bed1] {
    font-size: 13px;
}
}

/* Message animation */
@keyframes messageSlideIn-19e4bed1 {
from {
    opacity: 0;
    transform: translateY(10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.message-item[data-v-19e4bed1] {
  animation: messageSlideIn-19e4bed1 0.3s ease-out;
}

/* Loading animation improvement */
.loading-state i.bx-spin[data-v-19e4bed1] {
  color: #0284c7;
}

/* Empty state improvement */
.empty-state[data-v-19e4bed1] {
  background: #f9fafb;
  border-radius: 8px;
  border: 2px dashed #e5e7eb;
}
.empty-state p[data-v-19e4bed1] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.empty-state p[data-v-19e4bed1]::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239ca3af'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* Messages list container */
.messages-list[data-v-19e4bed1] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filezone[data-v-19e4bed1] {
    display: flex;
    align-items: center;
    justify-content: center;
    outline-offset: -10px;
    /*background: #73818f;*/
    background: #858796;
    color: #fff;
    padding: 10px 10px;
    min-height: 90px;
    position: relative;
    cursor: pointer;
    /*border-radius: 10px !important;*/
}
.card_style[data-v-19e4bed1] {
    border-radius: 0px;
    border: none;
}
.avatar[data-v-19e4bed1] {
    display: inline-flex;
    border-radius: 50%;
    position: relative;
    align-items: center;
    justify-content: center;
}
.avatar .avatar-img[data-v-19e4bed1] {
    border-radius: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 60px;
    width: 60px;
}
.avatar .channel-svg[data-v-19e4bed1] {
    width: 20px;
    position: absolute;
    bottom: 0;
    right: -0.5em;
    z-index: 9;
    background-color:white;
}
.avatar-offline[data-v-19e4bed1]::before {
    background-color: #d7dce3;
}
.avatar-online[data-v-19e4bed1]::before {
    background-color: #64c400;
    z-index: 9;
}
.avatar-busy[data-v-19e4bed1]::before {
    background-color: #f6ae2c;
    z-index: 9;
}
.avatar-idle[data-v-19e4bed1]::before {
    background-color: #36aecc;
    z-index: 9;
}
.avatar-out[data-v-19e4bed1]::before {
    background-color: #ff6b5c;
    z-index: 9;
}
.avatar-busy[data-v-19e4bed1]::before,
.avatar-out[data-v-19e4bed1]::before,
.avatar-idle[data-v-19e4bed1]::before,
.avatar-offline[data-v-19e4bed1]::before,
.avatar-online[data-v-19e4bed1]::before {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: 0;
    /*right: 12%;*/
    right: 5%;
    width: 0%;
    height: 0%;
    border-radius: 50%;
    border: none;
}
.step .step-item[data-v-19e4bed1] {
    max-width: 100% !important;
}
.done_hover[data-v-19e4bed1] {
    --done-hover-placeholder: 0;
}
.done_hover[data-v-19e4bed1]:hover,
.done_active[data-v-19e4bed1] {
    background: #64c400;
    color: #fff;
    border: 1px solid #64c400;
}
.fail_hover[data-v-19e4bed1] {
    --fail-hover-placeholder: 0;
}
.fail_hover[data-v-19e4bed1]:hover,
.fail_active[data-v-19e4bed1] {
    background: #e74a3b;
    color: #fff;
    border: 1px solid #e74a3b;
}
.step .step-item[data-v-19e4bed1]:not(:first-child)::before {
    left: -90%;
}
.step .step-item .step-item-link[data-v-19e4bed1] {
    --step-item-link-placeholder: 0;
}



/*Chat*/
/*Responsives*/
.chat_grid_list[data-v-19e4bed1] {
    overflow-y: auto;
    overflow-x: hidden;
    /* min-height: 650px;
    max-height: 650px; */
    max-height: calc(100vh - 250px);
    min-height: calc(100vh - 250px);
}
.chat_grid_conversation[data-v-19e4bed1] {
    /*min-height: calc(100vh - 300px);*/
    /*max-height: calc(100vh - 300px);*/
    min-height: calc(100vh - 300px);
    max-height: calc(100vh - 300px);
    overflow-y: auto;
}
.chat_conversation_on_show_emoji[data-v-19e4bed1] {
    margin-bottom: 195px;
}
#chat_details[data-v-19e4bed1] {
    overflow-y: auto;
    overflow-x: hidden;
    min-height: calc(100vh - 375px);
    max-height: calc(100vh - 375px);
}
.page-link-chat[data-v-19e4bed1] {
    background-color: #fff;
    border: 1px solid #fff;
}
.page-item-chat[data-v-19e4bed1] {
    background-color: #fff !important;
    border-color: #fff !important;
}


/* Chat balloons */
.balloon[data-v-19e4bed1] {
    border: none;
    border-radius: 18px;
    padding: 14px 18px;
    margin: 8px 0;
    font-size: 14px;
    font-weight: 400;
    color: #4b4b4b;
    max-width: 80%;
    display: inline-block;
    letter-spacing: 0.01rem;
    min-width: 240px;
    text-align: left;
    word-break: break-word;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.2s ease;
    line-height: 1.5;
}
.balloon[data-v-19e4bed1]:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}

/* List rendering inside chat balloons */
.balloon ul[data-v-19e4bed1],
.balloon ol[data-v-19e4bed1] {
    padding-left: 1.25em;
    margin: 0.35em 0;
    list-style-position: outside;
}
.balloon ul[data-v-19e4bed1] {
    list-style-type: disc;
}
.balloon ol[data-v-19e4bed1] {
    list-style-type: decimal;
}
.balloon ul ul[data-v-19e4bed1] {
    list-style-type: circle;
}
.balloon ul ul ul[data-v-19e4bed1] {
    list-style-type: square;
}
.balloon li[data-v-19e4bed1] {
    margin: 0.2em 0;
}
/* operator chat balloon */
.operator[data-v-19e4bed1] {
        color: #0d47a1;
        background-color: #e3f2fd;
        border-radius: 18px 18px 4px 18px !important;
        /* align-self: flex-end; */
        font-size: 14px;
}
.operator a[data-v-19e4bed1] {
        color: #1976d2;
}
.balloon.scheduled-message[data-v-19e4bed1] {
        background-color: #f1f8e9;
        color: #33691e;
}
.balloon.scheduled-message a[data-v-19e4bed1] {
        color: #2e7d32;
}
.system-long-message[data-v-19e4bed1] {
    background-color: #f8f9fa;
    border-left: 3px solid #4a90e2;
    border-radius: 12px;
    color: #505050;
    width: 90%;
    margin: 16px auto;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
/* Balão do lead/cliente */
.balloon.lead[data-v-19e4bed1] {
    background-color: #f0f2f5;
    color: #303030;
    border-radius: 18px 18px 18px 4px;
}

/* Clear floats */
.balloon[data-v-19e4bed1]::after {
    content: "";
    clear: both;
    display: table;
}

/* Style images */
.balloon img[data-v-19e4bed1] {
    float: left;
    max-width: 60px;
    width: 100%;
    margin-right: 20px;
    border-radius: 50%;
}

/* Style the right image */
.balloon img.right[data-v-19e4bed1] {
    float: right;
    margin-left: 20px;
    margin-right: 0;
}
/*
  .time-system {
    text-align: right;
    color: #888;
  } */
/* Style time text */
.time-right[data-v-19e4bed1] {
    float: right;
    /*color: #aaa;*/
    color: rgba(13, 71, 161, 0.65);
}
.timer-scheduled[data-v-19e4bed1] {
    color: rgba(51, 105, 30, 0.7);
}

/* Style time text */
.time-left[data-v-19e4bed1] {
    float: left;
    color: #888888b6;
}
.badge-warning[data-v-19e4bed1] {
    color: #fff;
    background-color: #f6ae2c;
}
.badge-success[data-v-19e4bed1] {
    color: #fff;
    background-color: #0693e3;
}
.badge-info[data-v-19e4bed1] {
    color: #fff;
    background-color: #36aecc;
}
.hover_more[data-v-19e4bed1] {
    border-radius: 50%;
    padding: 0.7rem;
}
.hover_more[data-v-19e4bed1]:hover {
    border-radius: 50%;
    padding: 0.7rem;
    background: #eeeeee;
    color: #353535;
    transition: all 8ms;
}
.hover_icons[data-v-19e4bed1]:hover {
    border-radius: 50%;
    padding: 0.7rem;
    background: #eeeeee;
    color: #353535;
    transition: all 8ms;
}
.hover_icons[data-v-19e4bed1] {
    border-radius: 50%;
    padding: 0.7rem;
    color: #353535;
    transition: all 8ms;
    cursor: pointer;
}
.timer[data-v-19e4bed1] {
    font-size: .7rem;
    padding-top: .4rem;
    padding-bottom: .4rem;
}
.text_input[data-v-19e4bed1] {
    border: 1px solid #e3e6f0 !important;
    border-radius: 0;
    font-size: 1rem;
    min-height: 45px;
    padding-left: 1.2rem;
    padding-top: .6rem;
    resize: none;
}
[data-v-19e4bed1]:focus {
    outline: none;
}
label[data-v-19e4bed1] {
    font-size: .8rem;
}
.input_forms[data-v-19e4bed1] {
    /*font-size: .9rem;*/
    border-radius: 0;
    padding: .4rem 0;
    height: auto;
    font-weight: 500;
    transition: all .6s;
    border-bottom: 2px solid #e3e6f0;
    border-top: none;
    border-left: none;
    border-right: none;
}
.input_forms[data-v-19e4bed1]:focus {
    /*font-size: .9rem;*/
    border-bottom: 2px solid #c7c9d0;
    border-top: none;
    border-left: none;
    border-right: none;
    transition: all .6s;
}
select[data-v-19e4bed1]:focus {
    /*font-size: .9rem;*/
    box-shadow: none;
    border-bottom: 2px solid #c7c9d0;
    border-top: none;
    border-left: none;
    border-right: none;
    transition: all .6s;
}
.form-control[data-v-19e4bed1]:focus {
    color: #6e707e;
    background-color: #fff;
    outline: 0;
    box-shadow: none;
}
.nav-pills .nav-link[data-v-19e4bed1] {
    border-radius: 50px;
    padding: .7rem .8rem .4rem;
    margin-right: 1rem;
}
.nav-pills .nav-link.active[data-v-19e4bed1],
.nav-pills .show>.nav-link[data-v-19e4bed1] {
    color: #353535;
    background-color: #f2f2f2;
}
a.nav-link[data-v-19e4bed1] {
    color: #aaa;
}

/*NOVO STYLE*/
.container_list[data-v-19e4bed1] {
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: row;
    height: 72px;
    pointer-events: all;
}
.avatar_content[data-v-19e4bed1] {
    padding: 0 15px 0 13px;
    margin-top: -1px;
    display: flex;
    flex: none;
    align-items: center;
}
.contact_area[data-v-19e4bed1] {
    padding-right: 15px;
    display: flex;
    flex-basis: auto;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    min-width: 0;
}
.contact_title_area[data-v-19e4bed1] {
    text-align: left;
    display: flex;
    align-items: center;
    line-height: normal;
    margin-top: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.contact_title_line[data-v-19e4bed1] {
    text-align: left;
    display: flex;
    flex-grow: 1;
    overflow: hidden;
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
}
.contact_title_line_area[data-v-19e4bed1] {
    display: inherit;
    overflow: inherit;
    white-space: inherit;
    text-overflow: inherit;
}
.contact_title[data-v-19e4bed1] {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.flag_area[data-v-19e4bed1] {
    margin-left: 8px;
    display: inline-flex;
    align-items: flex-end;
    height: 17px;
    vertical-align: top;
}
.flag_content[data-v-19e4bed1] {
    display: inline-block;
    flex: none;
    vertical-align: top;
}
.text_small_list[data-v-19e4bed1] {
    margin-left: 6px;
    line-height: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: none;
    max-width: 100%;
    font-size: 12px;
}
.text_preview_content[data-v-19e4bed1] {
    display: flex;
    align-items: center;
    min-height: 20px;
    color: var(--secondary);
    font-size: 13px;
    line-height: 20px;
}
.text_preview_area[data-v-19e4bed1] {
    text-align: left;
    background-color: initial;
    flex-grow: 1;
    overflow: hidden;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.text_preview_zone[data-v-19e4bed1] {
    display: flex;
    align-items: flex-start;
}
.text_preview_flag[data-v-19e4bed1] {
    display: inline-block;
    vertical-align: top;
}
.text_preview_flag[data-v-19e4bed1]:last-child {
    margin-right: 0;
}
.item_hover[data-v-19e4bed1]:hover {
    background: #f2f2f2;
    cursor: pointer;
    transition: all .6s;
}
.item_active[data-v-19e4bed1] {
    background: #C3C7C9;
    cursor: pointer;
    transition: all .6s;
}

/* Estrutura */
.input-container[data-v-19e4bed1] {
    position: relative;
}
input.input_style[data-v-19e4bed1] {
    border: 0;
    border-bottom: 2px solid #9e9e9e;
    outline: none;
    transition: .2s ease-in-out;
    box-sizing: border-box;
}
label.label_style[data-v-19e4bed1] {
    top: 0;
    left: 0;
    right: 0;
    color: #616161;
    display: flex;
    align-items: center;
    position: absolute;
    font-size: .9rem;
    cursor: text;
    transition: .2s ease-in-out;
    box-sizing: border-box;
}
input.input_style[data-v-19e4bed1],
label.label_style[data-v-19e4bed1] {
    width: 100%;
    height: 3rem;
    font-size: .9rem;
}

/* Interaction */
input.input_style[data-v-19e4bed1]:valid,
input.input_style[data-v-19e4bed1]:focus {
    border-bottom: 2px solid #26a69a;
}
input.input_style:valid+label[data-v-19e4bed1],
input.input_style:focus+label[data-v-19e4bed1] {
    color: #26a69a;
    font-size: .8rem;
    top: -30px;
    pointer-events: none;
}

/*Leads Details*/
/*TIMELINE*/
.timeline_new[data-v-19e4bed1] {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dddbdb;
    background: #f6f6f6;
    padding: 1.5rem;
    border-radius: 50px;
}
.li[data-v-19e4bed1] {
    transition: all 200ms ease-in;
}
.timestamp[data-v-19e4bed1] {
    margin-bottom: 20px;
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 100;
}
.status[data-v-19e4bed1] {
    padding: 0px 25px;
    display: flex;
    justify-content: center;
    border-top: 3px solid #D6DCE0;
    position: relative;
    transition: all 200ms ease-in;
}
.status[data-v-19e4bed1]:nth-child {
    right: 100%;
}
.status h4[data-v-19e4bed1] {
    font-weight: 600;
}
.status[data-v-19e4bed1]:before {
    content: "";
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 25px;
    border: 1px solid #ddd;
    position: absolute;
    top: -10px;
    right: 40%;
    /*left: 0;*/
    transition: all 200ms ease-in;
}
.li.complete .status[data-v-19e4bed1] {
    border-top: 3px solid #66DC71;
}
.li.complete .status[data-v-19e4bed1]:before {
    background-color: #66DC71;
    border: none;
    transition: all 200ms ease-in;
}
.li.complete .status h4[data-v-19e4bed1] {
    color: #66DC71;
}
.btn-outline-primary[data-v-19e4bed1] {
    color: #36aecc;
    border-color: #36aecc;
    border-radius: 5px;
    padding: .3rem 1rem;
}
.btn-outline-primary[data-v-19e4bed1]:hover {
    color: #fff;
    background-color: #36aecc;
    border-color: #36aecc;
}
.btn-notes[data-v-19e4bed1] {
    border-radius: 0px;
}
.inputs_notes[data-v-19e4bed1] {
    border: 1px solid #e3e6f0;
    font-size: .8rem;
}
.inputs_notes[data-v-19e4bed1]:focus {
    border: 1px solid #9e9e9e;
}
.cursor-pointer[data-v-19e4bed1] {
    cursor: pointer;
}
.cursor-default[data-v-19e4bed1] {
    cursor: default;
}
.btn[data-v-19e4bed1]:focus,
.btn.focus[data-v-19e4bed1] {
    outline: 0;
    box-shadow: none;
}






/*STEPS*/

/*STEPS*/
.step[data-v-19e4bed1] {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    margin-left: 0;
    /*margin-left: -.15rem;*/
    /*margin: 0 -0.3rem 0 -0.3rem;*/
    -moz-text-align-last: left;
         text-align-last: left;
}
.step .step-item[data-v-19e4bed1] {
    flex: 1 1 0;
    position: relative;
    text-align: center;
    max-width: 100px;
}
.step .step-item[data-v-19e4bed1]:not(:first-child)::before {
    /*background-color: #69707a;*/
    background-color: #62BD70;
    content: "";
    height: 0.125rem;
    /*left: -50%;*/
    left: -100%;
    position: absolute;
    top: 0.4375rem;
    width: 100%;
    z-index: 0;
}
.step .step-item .step-item-link[data-v-19e4bed1] {
    color: #62BD70;
    /*color: #69707a;*/
    position: relative;
    display: inline-block;
    padding-top: 1.25rem;
    /*padding-left: 1rem;*/
    /*padding-right: 1rem;*/
    padding-left: 0;
    padding-right: 0;
    text-decoration: none;
    z-index: 1;
}
.step .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #62BD70;
    /*background-color: #69707a;*/
    border: 0.125rem solid #fff;
    border-radius: 100%;
    content: "";
    display: block;
    height: 1rem;
    width: 1rem;
    left: 50%;
    position: absolute;
    top: 0;
    /*transform: translateX(-50%);*/
    z-index: 1;
}
.step .step-item .step-item-link.disabled[data-v-19e4bed1] {
    pointer-events: none;
    cursor: default;
}
.step .step-item.offline[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #d4dae3;
}
.step .step-item.offline a[data-v-19e4bed1]::before {
    background: #d4dae3;
}
.step .step-item.active a[data-v-19e4bed1]::before {
    background: #fff;
    /*border: 0.125rem solid #69707a;*/
    border: 0.125rem solid #62BD70;
}
.step .step-item.active~.step-item .step-item-link[data-v-19e4bed1] {
    color: #d4dae3;
}
.step .step-item.active~.step-item .step-item-link[data-v-19e4bed1]::before {
    background: #d4dae3;
}
.step .step-item.active~.step-item[data-v-19e4bed1]::before {
    background: #d4dae3;
}
.step-lg .step-item[data-v-19e4bed1]:not(:first-child)::before {
    height: 0.25rem;
    top: 0.625rem;
}
.step-lg .step-item .step-item-link[data-v-19e4bed1] {
    padding-top: 2rem;
}
.step-lg .step-item .step-item-link[data-v-19e4bed1]::before {
    border-width: 0.25rem;
    height: 1.5rem;
    width: 1.5rem;
}
.step-lg .step-item.active a[data-v-19e4bed1]::before {
    border-width: 0.25rem;
}

/*.step {*/
/*    display: flex;*/
/*    flex-wrap: nowrap;*/
/*    width: 100%;*/
/*    margin-left: -.1rem;*/
/*    !*margin: 0 -0.3rem 0 -0.3rem;*!*/
/*    text-align-last: left;*/
/*}*/
/*.step .step-item {*/
/*    flex: 1 1 0;*/
/*    position: relative;*/
/*    text-align: center;*/
/*    max-width: 35px;*/
/*}*/
/*.step .step-item:not(:first-child)::before {*/
/*    !*background-color: #69707a;*!*/
/*    background-color: #62BD70;*/
/*    content: "";*/
/*    height: 0.125rem;*/
/*    !*left: -50%;*!*/
/*    left: -75%;*/
/*    position: absolute;*/
/*    top: 0.4375rem;*/
/*    width: 100%;*/
/*    z-index: 0;*/
/*}*/
/*.step .step-item .step-item-link {*/
/*    color: #62BD70;*/
/*    !*color: #69707a;*!*/
/*    position: relative;*/
/*    display: inline-block;*/
/*    padding-top: 1.25rem;*/
/*    !*padding-left: 1rem;*!*/
/*    !*padding-right: 1rem;*!*/
/*    padding-left: 5px;*/
/*    padding-right: 0;*/
/*    text-decoration: none;*/
/*    z-index: 1;*/
/*}*/
/*.step .step-item .step-item-link::before {*/
/*    background-color: #62BD70;*/
/*    !*background-color: #69707a;*!*/
/*    border: 0.125rem solid #fff;*/
/*    border-radius: 100%;*/
/*    content: "";*/
/*    display: block;*/
/*    height: 1rem;*/
/*    width: 1rem;*/
/*    left: 50%;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    !*transform: translateX(-50%);*!*/
/*    z-index: 1;*/
/*}*/
/*.step .step-item .step-item-link.disabled {*/
/*    pointer-events: none;*/
/*    cursor: default;*/
/*}*/
/*.step .step-item.active a::before {*/
/*    background: #fff;*/
/*    !*border: 0.125rem solid #69707a;*!*/
/*    border: 0.125rem solid #62BD70;*/
/*}*/
/*.step .step-item.disabled a::before {*/
/*    background: #d4dae3;*/
/*}*/
/*.step .step-item.active ~ .step-item .step-item-link {*/
/*    color: #d4dae3;*/
/*}*/
/*.step .step-item.active ~ .step-item .step-item-link::before {*/
/*    background: #d4dae3;*/
/*}*/
/*.step .step-item.active ~ .step-item::before {*/
/*    background: #d4dae3;*/
/*}*/

/*.step-lg .step-item:not(:first-child)::before {*/
/*    height: 0.25rem;*/
/*    top: 0.625rem;*/
/*}*/
/*.step-lg .step-item .step-item-link {*/
/*    padding-top: 2rem;*/
/*}*/
/*.step-lg .step-item .step-item-link::before {*/
/*    border-width: 0.25rem;*/
/*    height: 1.5rem;*/
/*    width: 1.5rem;*/
/*}*/
/*.step-lg .step-item.active a::before {*/
/*    border-width: 0.25rem;*/
/*}*/
.step-primary .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #0061f2;
}
.step-primary .step-item .step-item-link[data-v-19e4bed1] {
    color: #0061f2;
}
.step-primary .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #0061f2;
}
.step-primary .step-item.active a[data-v-19e4bed1]::before {
    border-color: #0061f2;
}
.step-secondary .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #6900c7;
}
.step-secondary .step-item .step-item-link[data-v-19e4bed1] {
    color: #6900c7;
}
.step-secondary .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #6900c7;
}
.step-secondary .step-item.active a[data-v-19e4bed1]::before {
    border-color: #6900c7;
}
.step-success .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #00ac69;
}
.step-success .step-item .step-item-link[data-v-19e4bed1] {
    color: #00ac69;
}
.step-success .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #00ac69;
}
.step-success .step-item.active a[data-v-19e4bed1]::before {
    border-color: #00ac69;
}
.step-info .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #00cfd5;
}
.step-info .step-item .step-item-link[data-v-19e4bed1] {
    color: #00cfd5;
}
.step-info .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #00cfd5;
}
.step-info .step-item.active a[data-v-19e4bed1]::before {
    border-color: #00cfd5;
}
.step-warning .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #f4a100;
}
.step-warning .step-item .step-item-link[data-v-19e4bed1] {
    color: #f4a100;
}
.step-warning .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #f4a100;
}
.step-warning .step-item.active a[data-v-19e4bed1]::before {
    border-color: #f4a100;
}
.step-danger .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #e81500;
}
.step-danger .step-item .step-item-link[data-v-19e4bed1] {
    color: #e81500;
}
.step-danger .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #e81500;
}
.step-danger .step-item.active a[data-v-19e4bed1]::before {
    border-color: #e81500;
}
.step-light .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #f2f6fc;
}
.step-light .step-item .step-item-link[data-v-19e4bed1] {
    color: #f2f6fc;
}
.step-light .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #f2f6fc;
}
.step-light .step-item.active a[data-v-19e4bed1]::before {
    border-color: #f2f6fc;
}
.step-dark .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #212832;
}
.step-dark .step-item .step-item-link[data-v-19e4bed1] {
    color: #212832;
}
.step-dark .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #212832;
}
.step-dark .step-item.active a[data-v-19e4bed1]::before {
    border-color: #212832;
}
.step-black .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #000;
}
.step-black .step-item .step-item-link[data-v-19e4bed1] {
    color: #000;
}
.step-black .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #000;
}
.step-black .step-item.active a[data-v-19e4bed1]::before {
    border-color: #000;
}
.step-white .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #fff;
}
.step-white .step-item .step-item-link[data-v-19e4bed1] {
    color: #fff;
}
.step-white .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #fff;
}
.step-white .step-item.active a[data-v-19e4bed1]::before {
    border-color: #fff;
}
.step-red .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #e81500;
}
.step-red .step-item .step-item-link[data-v-19e4bed1] {
    color: #e81500;
}
.step-red .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #e81500;
}
.step-red .step-item.active a[data-v-19e4bed1]::before {
    border-color: #e81500;
}
.step-orange .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #f76400;
}
.step-orange .step-item .step-item-link[data-v-19e4bed1] {
    color: #f76400;
}
.step-orange .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #f76400;
}
.step-orange .step-item.active a[data-v-19e4bed1]::before {
    border-color: #f76400;
}
.step-yellow .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #f4a100;
}
.step-yellow .step-item .step-item-link[data-v-19e4bed1] {
    color: #f4a100;
}
.step-yellow .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #f4a100;
}
.step-yellow .step-item.active a[data-v-19e4bed1]::before {
    border-color: #f4a100;
}
.step-green .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #00ac69;
}
.step-green .step-item .step-item-link[data-v-19e4bed1] {
    color: #00ac69;
}
.step-green .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #00ac69;
}
.step-green .step-item.active a[data-v-19e4bed1]::before {
    border-color: #00ac69;
}
.step-teal .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #00ba94;
}
.step-teal .step-item .step-item-link[data-v-19e4bed1] {
    color: #00ba94;
}
.step-teal .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #00ba94;
}
.step-teal .step-item.active a[data-v-19e4bed1]::before {
    border-color: #00ba94;
}
.step-cyan .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #00cfd5;
}
.step-cyan .step-item .step-item-link[data-v-19e4bed1] {
    color: #00cfd5;
}
.step-cyan .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #00cfd5;
}
.step-cyan .step-item.active a[data-v-19e4bed1]::before {
    border-color: #00cfd5;
}
.step-blue .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #0061f2;
}
.step-blue .step-item .step-item-link[data-v-19e4bed1] {
    color: #0061f2;
}
.step-blue .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #0061f2;
}
.step-blue .step-item.active a[data-v-19e4bed1]::before {
    border-color: #0061f2;
}
.step-indigo .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #5800e8;
}
.step-indigo .step-item .step-item-link[data-v-19e4bed1] {
    color: #5800e8;
}
.step-indigo .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #5800e8;
}
.step-indigo .step-item.active a[data-v-19e4bed1]::before {
    border-color: #5800e8;
}
.step-purple .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #6900c7;
}
.step-purple .step-item .step-item-link[data-v-19e4bed1] {
    color: #6900c7;
}
.step-purple .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #6900c7;
}
.step-purple .step-item.active a[data-v-19e4bed1]::before {
    border-color: #6900c7;
}
.step-pink .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #e30059;
}
.step-pink .step-item .step-item-link[data-v-19e4bed1] {
    color: #e30059;
}
.step-pink .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #e30059;
}
.step-pink .step-item.active a[data-v-19e4bed1]::before {
    border-color: #e30059;
}
.step-red-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #f1e0e3;
}
.step-red-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #f1e0e3;
}
.step-red-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #f1e0e3;
}
.step-red-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #f1e0e3;
}
.step-orange-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #f3e7e3;
}
.step-orange-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #f3e7e3;
}
.step-orange-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #f3e7e3;
}
.step-orange-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #f3e7e3;
}
.step-yellow-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #f2eee3;
}
.step-yellow-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #f2eee3;
}
.step-yellow-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #f2eee3;
}
.step-yellow-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #f2eee3;
}
.step-green-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #daefed;
}
.step-green-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #daefed;
}
.step-green-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #daefed;
}
.step-green-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #daefed;
}
.step-teal-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #daf0f2;
}
.step-teal-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #daf0f2;
}
.step-teal-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #daf0f2;
}
.step-teal-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #daf0f2;
}
.step-cyan-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #daf2f8;
}
.step-cyan-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #daf2f8;
}
.step-cyan-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #daf2f8;
}
.step-cyan-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #daf2f8;
}
.step-blue-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #dae7fb;
}
.step-blue-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #dae7fb;
}
.step-blue-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #dae7fb;
}
.step-blue-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #dae7fb;
}
.step-indigo-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #e3ddfa;
}
.step-indigo-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #e3ddfa;
}
.step-indigo-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #e3ddfa;
}
.step-indigo-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #e3ddfa;
}
.step-purple-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #e4ddf7;
}
.step-purple-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #e4ddf7;
}
.step-purple-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #e4ddf7;
}
.step-purple-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #e4ddf7;
}
.step-pink-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #f1ddec;
}
.step-pink-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #f1ddec;
}
.step-pink-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #f1ddec;
}
.step-pink-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #f1ddec;
}
.step-primary-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #dae7fb;
}
.step-primary-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #dae7fb;
}
.step-primary-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #dae7fb;
}
.step-primary-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #dae7fb;
}
.step-secondary-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #e4ddf7;
}
.step-secondary-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #e4ddf7;
}
.step-secondary-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #e4ddf7;
}
.step-secondary-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #e4ddf7;
}
.step-success-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #daefed;
}
.step-success-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #daefed;
}
.step-success-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #daefed;
}
.step-success-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #daefed;
}
.step-info-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #daf2f8;
}
.step-info-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #daf2f8;
}
.step-info-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #daf2f8;
}
.step-info-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #daf2f8;
}
.step-warning-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #f2eee3;
}
.step-warning-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #f2eee3;
}
.step-warning-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #f2eee3;
}
.step-warning-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #f2eee3;
}
.step-danger-soft .step-item[data-v-19e4bed1]:not(:first-child)::before {
    background-color: #f1e0e3;
}
.step-danger-soft .step-item .step-item-link[data-v-19e4bed1] {
    color: #f1e0e3;
}
.step-danger-soft .step-item .step-item-link[data-v-19e4bed1]::before {
    background-color: #f1e0e3;
}
.step-danger-soft .step-item.active a[data-v-19e4bed1]::before {
    border-color: #f1e0e3;
}

/*STEPS*/

/*  AUDIO TAG - Removido em favor do player customizado */
/* Os estilos do player de áudio customizado estão no componente ChatBalloonDefault.vue */
/* ========================================
   KanbanCardMedia – Document manager UI
   ======================================== */
.kanban-card-media-wrapper[data-v-0496c4a4] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 4px 0;
  position: relative;
}

/* ---------- Drag & Drop Zone ---------- */
.kanban-card-media-dropzone[data-v-0496c4a4] {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: 2px dashed #0096C7;
  border-radius: 12px;
  pointer-events: none;
  backdrop-filter: blur(4px);
  animation: kanban-media-dropzone-in-0496c4a4 0.18s ease-out;
}
@keyframes kanban-media-dropzone-in-0496c4a4 {
from { opacity: 0; transform: scale(0.98);
}
to   { opacity: 1; transform: scale(1);
}
}
.kanban-card-media-dropzone-content[data-v-0496c4a4] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #0096C7;
}
.kanban-card-media-dropzone-content p[data-v-0496c4a4] {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}
.kanban-card-media-dropzone-hint[data-v-0496c4a4] {
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
}

/* ---------- Upload Progress Queue ---------- */
.kanban-card-media-upload-queue[data-v-0496c4a4] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kanban-card-media-upload-item[data-v-0496c4a4] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.kanban-card-media-upload-item--done[data-v-0496c4a4] {
  border-color: #86efac;
  background: #f0fdf4;
}
.kanban-card-media-upload-item--error[data-v-0496c4a4] {
  border-color: #fecaca;
  background: #fef2f2;
}
.kanban-card-media-upload-item-info[data-v-0496c4a4] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.kanban-card-media-upload-item-name[data-v-0496c4a4] {
  font-size: 13px;
  font-weight: 500;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}
.kanban-card-media-upload-item-percent[data-v-0496c4a4] {
  font-size: 12px;
  font-weight: 600;
  color: #0096C7;
  flex-shrink: 0;
}
.kanban-card-media-upload-item-status[data-v-0496c4a4] {
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.kanban-card-media-upload-item-status--done[data-v-0496c4a4] {
  color: #16a34a;
}
.kanban-card-media-upload-item-status--error[data-v-0496c4a4] {
  color: #dc2626;
}
.kanban-card-media-upload-item-bar[data-v-0496c4a4] {
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}
.kanban-card-media-upload-item-bar-fill[data-v-0496c4a4] {
  height: 100%;
  background: #0096C7;
  border-radius: 4px;
  transition: width 0.25s ease;
}
.kanban-card-media-upload-item-bar-fill--done[data-v-0496c4a4] {
  background: #16a34a;
}
.kanban-card-media-upload-item-bar-fill--error[data-v-0496c4a4] {
  background: #dc2626;
}

/* ---------- Toolbar (Search + Upload) ---------- */
.kanban-card-media-toolbar[data-v-0496c4a4] {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.kanban-card-media-search[data-v-0496c4a4] {
  flex: 1;
  min-width: 0;
}

/* Force InputDefault to fill the height of its sibling button */
.kanban-card-media-search .input-default-ui-wrapper[data-v-0496c4a4] {
  height: 100%;
}
.kanban-card-media-search .input-default-ui-container[data-v-0496c4a4] {
  height: 100%;
}
.kanban-card-media-upload[data-v-0496c4a4] {
  flex-shrink: 0;
  position: relative;
}

/* Ensure button matches input height */
.kanban-card-media-upload .button-default-ui[data-v-0496c4a4] {
  white-space: nowrap;
}
.kanban-card-media-upload-input[data-v-0496c4a4] {
  display: none;
}

/* ---------- Spinner ---------- */
.kanban-card-media-spinner[data-v-0496c4a4] {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #e5e7eb;
  border-top-color: #0096C7;
  border-radius: 50%;
  animation: kanban-media-spin-0496c4a4 0.6s linear infinite;
}
.kanban-card-media-spinner--lg[data-v-0496c4a4] {
  width: 24px;
  height: 24px;
  border-width: 3px;
}
.kanban-card-media-spinner--sm[data-v-0496c4a4] {
  width: 12px;
  height: 12px;
  border-width: 2px;
}
@keyframes kanban-media-spin-0496c4a4 {
to { transform: rotate(360deg);
}
}

/* ---------- Error ---------- */
.kanban-card-media-error[data-v-0496c4a4] {
  padding: 10px 14px;
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  border-radius: 8px;
  font-size: 13px;
  margin: 0;
}

/* ---------- Loading ---------- */
.kanban-card-media-loading[data-v-0496c4a4] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 16px;
  color: #6b7280;
  font-size: 14px;
}

/* ---------- Empty State ---------- */
.kanban-card-media-empty[data-v-0496c4a4] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 16px;
  color: #9ca3af;
  font-size: 14px;
  text-align: center;
}
.kanban-card-media-empty-icon[data-v-0496c4a4] {
  color: #d1d5db;
}
.kanban-card-media-empty p[data-v-0496c4a4] {
  margin: 0;
}

/* ---------- Media List ---------- */
.kanban-card-media-list[data-v-0496c4a4] {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.kanban-card-media-scroll[data-v-0496c4a4] {
  max-height: 420px;
  overflow-y: auto;
}
.kanban-card-media-load-more[data-v-0496c4a4] {
  display: flex;
  justify-content: center;
  padding: 12px 0 6px;
}
.kanban-card-media-item[data-v-0496c4a4] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-bottom: none;
  background: #ffffff;
  transition: background 0.12s ease;
}
.kanban-card-media-item[data-v-0496c4a4]:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.kanban-card-media-item[data-v-0496c4a4]:last-child {
  border-bottom: 1px solid #e5e7eb;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.kanban-card-media-item[data-v-0496c4a4]:hover {
  background: #f9fafb;
}

/* ---------- Item Link (Left section) ---------- */
.kanban-card-media-item-link[data-v-0496c4a4] {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

/* ---------- Thumbnail / File Icon ---------- */
.kanban-card-media-item-thumb[data-v-0496c4a4] {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}
.kanban-card-media-item-thumb-img[data-v-0496c4a4] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7px;
}
.kanban-card-media-item-thumb-label[data-v-0496c4a4] {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
}

/* Thumb color variants */
.kanban-card-media-thumb--image[data-v-0496c4a4] {
  background: #e0f2fe;
  border-color: #bae6fd;
}
.kanban-card-media-thumb--image .kanban-card-media-item-thumb-label[data-v-0496c4a4] {
  color: #0284c7;
}
.kanban-card-media-thumb--pdf[data-v-0496c4a4] {
  background: #dc2626;
  border-color: #dc2626;
}
.kanban-card-media-thumb--doc[data-v-0496c4a4] {
  background: #2563eb;
  border-color: #2563eb;
}
.kanban-card-media-thumb--xls[data-v-0496c4a4] {
  background: #059669;
  border-color: #059669;
}
.kanban-card-media-thumb--ppt[data-v-0496c4a4] {
  background: #ea580c;
  border-color: #ea580c;
}
.kanban-card-media-thumb--video[data-v-0496c4a4] {
  background: #7c3aed;
  border-color: #7c3aed;
}
.kanban-card-media-thumb--audio[data-v-0496c4a4] {
  background: #db2777;
  border-color: #db2777;
}
.kanban-card-media-thumb--archive[data-v-0496c4a4] {
  background: #854d0e;
  border-color: #854d0e;
}
.kanban-card-media-thumb--generic[data-v-0496c4a4] {
  background: #6b7280;
  border-color: #6b7280;
}

/* ---------- File Info ---------- */
.kanban-card-media-item-info[data-v-0496c4a4] {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  overflow: hidden;
}
.kanban-card-media-item-name[data-v-0496c4a4] {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kanban-card-media-item-type[data-v-0496c4a4] {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ---------- Actions (date + remove) ---------- */
.kanban-card-media-item-actions[data-v-0496c4a4] {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 16px;
}
.kanban-card-media-item-date[data-v-0496c4a4] {
  font-size: 13px;
  color: #6b7280;
  white-space: nowrap;
}
.kanban-card-media-item-remove[data-v-0496c4a4] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #9ca3af;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
  padding: 0;
}
.kanban-card-media-item-remove[data-v-0496c4a4]:hover {
  background: #fef2f2;
  color: #ef4444;
}
.kanban-card-media-item-remove[data-v-0496c4a4]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* ---------- Responsive ---------- */

/* Notebooks compactos */
@media (max-width: 1024px) {
.kanban-card-media-item-date[data-v-0496c4a4] {
    font-size: 12px;
}
.kanban-card-media-item[data-v-0496c4a4] {
    padding: 12px 14px;
}
}

/* Tablet portrait */
@media (max-width: 768px) {
.kanban-card-media-scroll[data-v-0496c4a4] {
    max-height: 350px;
}
.kanban-card-media-item-name[data-v-0496c4a4] {
    font-size: 13px;
}
}

/* Mobile */
@media (max-width: 600px) {
.kanban-card-media-toolbar[data-v-0496c4a4] {
    flex-direction: column;
    gap: 10px;
}
.kanban-card-media-upload .button-default-ui[data-v-0496c4a4] {
    width: 100%;
}
.kanban-card-media-item[data-v-0496c4a4] {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
}
.kanban-card-media-item-actions[data-v-0496c4a4] {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
}
.kanban-card-media-item-thumb[data-v-0496c4a4] {
    width: 38px;
    height: 38px;
}
}

.ai-pop[data-v-dd7b32d3] {
  position: fixed;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  box-shadow: 0 18px 48px -22px rgba(15, 23, 42, 0.14), 0 2px 8px -2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  font-family: 'SF Pro Display', 'Geist Sans', 'Helvetica Neue', system-ui, sans-serif;
  pointer-events: auto;
}

/* header (clickup-like: side icons + centered brand) */
.ai-pop__header[data-v-dd7b32d3] {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid #f2f2f0;
  background: #ffffff;
}
.ai-pop__header-side[data-v-dd7b32d3] {
  display: flex; align-items: center; gap: 2px;
}
.ai-pop__header-side--end[data-v-dd7b32d3] { justify-content: flex-end;
}
.ai-pop__icon-btn[data-v-dd7b32d3] {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 0; border-radius: 8px;
  background: transparent; color: #6b7280;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.ai-pop__icon-btn[data-v-dd7b32d3]:hover:not(:disabled) { background: #f5f5f4; color: #2f3437;
}
.ai-pop__icon-btn[data-v-dd7b32d3]:disabled { opacity: 0.4; cursor: not-allowed;
}
.ai-pop__brand[data-v-dd7b32d3] {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 0;
  border: none;
  background: transparent;
  font-size: 12px; font-weight: 600; color: #2f3437;
  cursor: default;
}
.ai-pop__brand-icon[data-v-dd7b32d3] {
  width: 16px; height: 16px;
  display: grid; place-items: center;
  border-radius: 5px;
  background: linear-gradient(135deg, #c4b5fd, #f0abfc);
  color: #ffffff;
}
/* body */
.ai-pop__body[data-v-dd7b32d3] {
  flex: 1; min-height: 240px;
  padding: 16px;
  overflow-y: auto;
}
.ai-pop__loading[data-v-dd7b32d3] {
  display: flex; align-items: center; gap: 8px;
  color: #787774; font-size: 12px; padding: 8px 0;
}
.ai-pop__spin[data-v-dd7b32d3] { animation: ai-pop-spin-dd7b32d3 1s linear infinite;
}
@keyframes ai-pop-spin-dd7b32d3 {
to { transform: rotate(360deg);
}
}

/* hero card (gradient) */
.ai-pop__hero[data-v-dd7b32d3] {
  position: relative;
  padding: 18px 18px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fbfbfa 0%, #faf5ff 55%, #fdf2f8 100%);
  border: 1px solid #eaeaea;
  overflow: hidden;
}
.ai-pop__hero-deco[data-v-dd7b32d3] { position: absolute; inset: 0; pointer-events: none;
}
.ai-pop__hero-blob[data-v-dd7b32d3] {
  position: absolute;
  top: -30px; right: -20px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.35), transparent 70%);
  border-radius: 50%;
}
.ai-pop__hero-icon[data-v-dd7b32d3] {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #a78bfa, #f0abfc);
  color: #ffffff;
  margin-bottom: 12px;
  box-shadow: 0 8px 18px -8px rgba(167, 139, 250, 0.6);
}
.ai-pop__hero-title[data-v-dd7b32d3] {
  font-size: 16px; font-weight: 600; color: #1f2937; letter-spacing: -0.01em;
  line-height: 1.25;
}
.ai-pop__hero-sub[data-v-dd7b32d3] {
  margin-top: 4px;
  font-size: 12.5px; color: #6b7280; line-height: 1.4;
}

/* sections (suggested) */
.ai-pop__section[data-v-dd7b32d3] { margin-top: 18px;
}
.ai-pop__section-title[data-v-dd7b32d3] {
  font-size: 11px; font-weight: 600; color: #9ca3af;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0 2px; margin-bottom: 8px;
}
.ai-pop__chips[data-v-dd7b32d3] {
  display: flex; flex-direction: column; gap: 4px;
}
.ai-pop__chip[data-v-dd7b32d3] {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  border: 0; border-radius: 8px;
  background: transparent; color: #2f3437;
  font-size: 13px; text-align: left;
  cursor: pointer;
  transition: background .15s;
}
.ai-pop__chip[data-v-dd7b32d3]:hover { background: #fafafa;
}
.ai-pop__chip-icon[data-v-dd7b32d3] {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 6px;
  background: #f5f3ff;
  color: #7c3aed;
  flex-shrink: 0;
}
.ai-pop__chip-label[data-v-dd7b32d3] { flex: 1; min-width: 0;
}

/* error */
.ai-pop__error[data-v-dd7b32d3] {
  display: flex; align-items: center; gap: 6px;
  margin-top: 12px;
  padding: 8px 10px;
  font-size: 12px; color: #9f2f2d;
  background: #fdebec; border: 1px solid #f6cccd;
  border-radius: 8px;
}

/* messages */
.ai-pop__msg[data-v-dd7b32d3] { margin-bottom: 16px;
}
.ai-pop__msg--user[data-v-dd7b32d3] { display: flex; justify-content: flex-end;
}
.ai-pop__user-bubble[data-v-dd7b32d3] {
  max-width: 85%;
  background: #f5f5f4;
  border-radius: 14px;
  padding: 8px 10px;
  display: flex; flex-direction: column;
  gap: 8px;
}
.ai-pop__user-bubble-text[data-v-dd7b32d3] {
  font-size: 13.5px; line-height: 1.45; color: #2f3437;
  white-space: pre-wrap;
  padding: 0 4px;
}
/* row dos anexos dentro da bolha — mesma forma do composer (tiles 56px) */
.ai-pop__user-bubble-atts[data-v-dd7b32d3] {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.ai-pop__user-bubble-att[data-v-dd7b32d3] {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e9e5ff;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.12s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.ai-pop__user-bubble-att[data-v-dd7b32d3]:hover {
  transform: translateY(-1px);
  border-color: #c4b5fd;
  box-shadow: 0 4px 12px -4px rgba(124, 58, 237, 0.25);
}
.ai-pop__user-bubble-att.is-image[data-v-dd7b32d3] {
  background: #ffffff;
}
.ai-pop__user-bubble-att-img[data-v-dd7b32d3] {
  width: 100%; height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.ai-pop__user-bubble-att-icon[data-v-dd7b32d3] {
  color: #7c3aed;
  position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
}
.ai-pop__user-bubble-att-name[data-v-dd7b32d3] {
  position: absolute; bottom: 4px; left: 4px; right: 4px;
  font-size: 9px; line-height: 1.1;
  color: #5b21b6;
  text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* legado: mantido caso ainda apareca em algum render antigo */
.ai-pop__user-text[data-v-dd7b32d3] {
  max-width: 85%;
  padding: 8px 14px;
  background: #f5f5f4;
  border-radius: 14px;
  font-size: 13.5px; line-height: 1.45; color: #2f3437;
  white-space: pre-wrap;
}
.ai-pop__ai-head[data-v-dd7b32d3] {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 6px;
}
.ai-pop__ai-mark[data-v-dd7b32d3] {
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 5px;
  background: linear-gradient(135deg, #c4b5fd, #f0abfc);
  color: #ffffff;
}
.ai-pop__ai-name[data-v-dd7b32d3] {
  font-size: 12px; font-weight: 600; color: #2f3437;
}
.ai-pop__ai-text[data-v-dd7b32d3] {
  font-size: 13.5px; line-height: 1.55; color: #2f3437;
}
.ai-pop__ai-text[data-v-dd7b32d3] p { margin: 0 0 6px;
}
.ai-pop__ai-text[data-v-dd7b32d3] p:last-child { margin-bottom: 0;
}
.ai-pop__ai-text[data-v-dd7b32d3] .ai-pop__ul { margin: 4px 0 6px; padding-left: 18px;
}
.ai-pop__ai-text[data-v-dd7b32d3] li { margin: 3px 0;
}
.ai-pop__ai-text[data-v-dd7b32d3] strong { font-weight: 600; color: #1f2937;
}
.ai-pop__ai-text[data-v-dd7b32d3] code {
  background: #fdebec;
  color: #9f2f2d;
  padding: 1px 5px; border-radius: 4px;
  font-family: 'Geist Mono', 'SF Mono', monospace;
  font-size: 12px;
}
.ai-pop__ai-text[data-v-dd7b32d3] .ai-pop__br { height: 4px;
}
.ai-pop__ai-actions[data-v-dd7b32d3] {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-top: 8px;
}
.ai-pop__ai-action[data-v-dd7b32d3] {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 8px;
  border: 1px solid #eaeaea; border-radius: 7px;
  background: #ffffff; color: #6b7280;
  font-size: 11px; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.ai-pop__ai-action[data-v-dd7b32d3]:hover { background: #fafafa; border-color: #d4d4d4; color: #2f3437;
}
.ai-pop__ai-action--ghost[data-v-dd7b32d3] { padding: 4px 6px;
}
.ai-pop__ai-action.is-on[data-v-dd7b32d3] { background: #f5f3ff; border-color: #c4b5fd; color: #7c3aed;
}
.ai-pop__steps[data-v-dd7b32d3] {
  margin-bottom: 6px;
  padding: 6px 10px;
  background: #fafafa;
  border-radius: 8px;
  font-size: 11.5px; color: #9ca3af;
}
.ai-pop__step[data-v-dd7b32d3] {
  display: flex; align-items: center; gap: 5px;
  padding: 1px 0;
}

/* footer composer (clickup style) */
.ai-pop__footer[data-v-dd7b32d3] {
  padding: 10px 12px 12px;
  background: #ffffff;
  border-top: 1px solid #f2f2f0;
}
.ai-pop__composer[data-v-dd7b32d3] {
  position: relative;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, #f0e7ff 0%, #ece9ff 50%, #fbe7ef 100%);
  transition: background .2s, box-shadow .2s;
}
.ai-pop__composer.is-focused[data-v-dd7b32d3] {
  box-shadow: 0 0 0 3px rgba(196, 181, 253, 0.14);
}
.ai-pop__composer.is-streaming[data-v-dd7b32d3] {
  background: linear-gradient(135deg, #ddd6fe 0%, #f5d0fe 50%, #fbcfe8 100%);
}
.ai-pop__composer[data-v-dd7b32d3] > * {
  background: #ffffff;
}
.ai-pop__input[data-v-dd7b32d3] {
  display: block; width: 100%; resize: none;
  border: 0; outline: 0;
  padding: 10px 14px 4px;
  font-size: 13.5px; line-height: 1.5; color: #2f3437;
  font-family: inherit;
  border-radius: 12px 12px 0 0;
  max-height: 140px;
}
.ai-pop__input[data-v-dd7b32d3]::-moz-placeholder { color: #b4b4b4;
}
.ai-pop__input[data-v-dd7b32d3]::placeholder { color: #b4b4b4;
}
.ai-pop__input[data-v-dd7b32d3]:disabled { background: #ffffff; color: #b4b4b4;
}
.ai-pop__composer-bar[data-v-dd7b32d3] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px 8px;
  border-radius: 0 0 12px 12px;
}
.ai-pop__composer-tools[data-v-dd7b32d3] {
  display: flex; align-items: center; gap: 2px;
}
.ai-pop__tool-btn[data-v-dd7b32d3] {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 0; border-radius: 7px;
  background: transparent; color: #6b7280;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.ai-pop__tool-btn[data-v-dd7b32d3]:hover:not(:disabled) { background: #f5f5f4; color: #2f3437;
}
.ai-pop__tool-btn[data-v-dd7b32d3]:disabled { opacity: 0.5; cursor: not-allowed;
}
.ai-pop__composer-end[data-v-dd7b32d3] {
  display: flex; align-items: center; gap: 6px;
}
.ai-pop__context-chip[data-v-dd7b32d3] {
  display: inline-flex; align-items: center; gap: 5px;
  max-width: 180px;
  padding: 4px 10px 4px 8px;
  border: 1px solid #eaeaea; border-radius: 9999px;
  background: #fafafa;
  font-size: 11.5px; color: #4b5563;
  white-space: nowrap;
}
.ai-pop__context-chip-label[data-v-dd7b32d3] {
  overflow: hidden; text-overflow: ellipsis;
}
.ai-pop__send[data-v-dd7b32d3] {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 0; border-radius: 9999px;
  background: #111111; color: #fff;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.ai-pop__send[data-v-dd7b32d3]:hover:not(:disabled) { background: #2f3437;
}
.ai-pop__send[data-v-dd7b32d3]:active:not(:disabled) { transform: scale(0.94);
}
.ai-pop__send[data-v-dd7b32d3]:disabled { background: #d4d4d4; cursor: not-allowed;
}
.ai-pop__send--stop[data-v-dd7b32d3] { background: #9f2f2d;
}
.ai-pop__send--stop[data-v-dd7b32d3]:hover { background: #7f2523;
}
.ai-pop-enter-active[data-v-dd7b32d3], .ai-pop-leave-active[data-v-dd7b32d3] { transition: opacity .15s, transform .15s;
}
.ai-pop-enter-from[data-v-dd7b32d3], .ai-pop-leave-to[data-v-dd7b32d3] { opacity: 0; transform: translateY(4px) scale(0.99);
}

/* slash command confirmation card (above composer) */
.ai-pop__slash-confirm[data-v-dd7b32d3] {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  background: linear-gradient(135deg, #fbfbfa, #faf5ff);
}
.ai-pop__slash-confirm-icon[data-v-dd7b32d3] {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #eaeaea;
  color: #9f2f2d;
  flex-shrink: 0;
}
.ai-pop__slash-confirm-text[data-v-dd7b32d3] { flex: 1; min-width: 0;
}
.ai-pop__slash-confirm-title[data-v-dd7b32d3] {
  font-size: 13px; font-weight: 600; color: #1f2937; line-height: 1.2;
}
.ai-pop__slash-confirm-sub[data-v-dd7b32d3] {
  margin-top: 3px;
  font-size: 11.5px; color: #6b7280; line-height: 1.35;
}
.ai-pop__slash-confirm-actions[data-v-dd7b32d3] {
  display: flex; gap: 6px; flex-shrink: 0; align-self: center;
}
.ai-pop__slash-btn[data-v-dd7b32d3] {
  padding: 5px 10px;
  border: 1px solid #eaeaea;
  border-radius: 7px;
  font-size: 11.5px; font-weight: 600;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.ai-pop__slash-btn--ghost[data-v-dd7b32d3] {
  background: #fff; color: #6b7280;
}
.ai-pop__slash-btn--ghost[data-v-dd7b32d3]:hover {
  background: #fafafa; color: #2f3437; border-color: #d4d4d4;
}
.ai-pop__slash-btn--primary[data-v-dd7b32d3] {
  background: #111111; color: #fff; border-color: #111111;
}
.ai-pop__slash-btn--primary[data-v-dd7b32d3]:hover { background: #2f3437;
}
.ai-pop-slash-enter-active[data-v-dd7b32d3], .ai-pop-slash-leave-active[data-v-dd7b32d3] {
  transition: opacity .15s ease, transform .15s ease;
}
.ai-pop-slash-enter-from[data-v-dd7b32d3], .ai-pop-slash-leave-to[data-v-dd7b32d3] {
  opacity: 0; transform: translateY(4px);
}

/* shared menu transition */
.ai-pop-menu-enter-active[data-v-dd7b32d3], .ai-pop-menu-leave-active[data-v-dd7b32d3] {
  transition: opacity .12s ease, transform .12s ease;
}
.ai-pop-menu-enter-from[data-v-dd7b32d3], .ai-pop-menu-leave-to[data-v-dd7b32d3] {
  opacity: 0; transform: translateY(-3px) scale(0.98);
}

/* + add menu (acima do botao +) */
.ai-pop__add-wrap[data-v-dd7b32d3] { position: relative;
}
.ai-pop__icon-btn.is-active[data-v-dd7b32d3],
.ai-pop__tool-btn.is-active[data-v-dd7b32d3] {
  background: #f5f5f4; color: #2f3437;
}
/* botao globe (web search) ligado: destaque azul */
.ai-pop__tool-btn.is-active.ai-pop__tool-btn--web[data-v-dd7b32d3],
.ai-pop__tool-btn--web.is-active[data-v-dd7b32d3] {
  background: #dbeafe;
  color: #1d4ed8;
}
.ai-pop__tool-btn--web.is-active[data-v-dd7b32d3]:hover:not(:disabled) {
  background: #bfdbfe;
  color: #1e40af;
}
.ai-pop__add-menu[data-v-dd7b32d3] {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  width: 188px;
  padding: 4px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  box-shadow: 0 16px 40px -16px rgba(15, 23, 42, 0.15), 0 2px 6px -2px rgba(15, 23, 42, 0.05);
  z-index: 1;
}
.ai-pop__add-menu-item[data-v-dd7b32d3] {
  display: flex; align-items: center; gap: 8px;
  width: 100%;
  padding: 7px 10px;
  border: 0; border-radius: 7px;
  background: transparent;
  color: #2f3437; font-size: 12.5px; text-align: left;
  cursor: pointer;
}
.ai-pop__add-menu-item[data-v-dd7b32d3]:hover { background: #fafafa;
}
.ai-pop__add-menu-item[data-v-dd7b32d3] svg { color: #6b7280; flex-shrink: 0;
}

/* historico dropdown (clickup brain style) */
.ai-pop__history-wrap[data-v-dd7b32d3] { position: relative;
}
.ai-pop__history-menu[data-v-dd7b32d3] {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 300px;
  padding: 6px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  box-shadow: 0 16px 40px -16px rgba(15, 23, 42, 0.15), 0 2px 6px -2px rgba(15, 23, 42, 0.05);
  z-index: 2;
  max-height: 380px;
  overflow-y: auto;
}

/* search header */
.ai-pop__history-search[data-v-dd7b32d3] {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  margin: 2px 2px 6px;
  background: #fafafa;
  border-radius: 8px;
}
.ai-pop__history-search-icon[data-v-dd7b32d3] { color: #9ca3af; flex-shrink: 0;
}
.ai-pop__history-search-input[data-v-dd7b32d3] {
  flex: 1; min-width: 0;
  border: 0; outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 12.5px; color: #2f3437;
}
.ai-pop__history-search-input[data-v-dd7b32d3]::-moz-placeholder { color: #9ca3af;
}
.ai-pop__history-search-input[data-v-dd7b32d3]::placeholder { color: #9ca3af;
}
.ai-pop__history-loading[data-v-dd7b32d3],
.ai-pop__history-empty[data-v-dd7b32d3] {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 10px;
  color: #9ca3af; font-size: 12px;
}

/* groups */
.ai-pop__history-group[data-v-dd7b32d3] { margin-bottom: 4px;
}
.ai-pop__history-group-label[data-v-dd7b32d3] {
  font-size: 11px; font-weight: 600; color: #9ca3af;
  padding: 6px 10px 4px;
}
.ai-pop__history-list[data-v-dd7b32d3] { display: flex; flex-direction: column; gap: 0;
}
.ai-pop__history-item[data-v-dd7b32d3] {
  position: relative;
  display: flex; align-items: center;
  padding: 6px 8px 6px 10px;
  border-radius: 7px;
  cursor: pointer;
  transition: background .12s;
}
.ai-pop__history-item[data-v-dd7b32d3]:hover { background: #fafafa;
}
.ai-pop__history-item.is-active[data-v-dd7b32d3] { background: #f5f3ff;
}
.ai-pop__history-item-title[data-v-dd7b32d3] {
  flex: 1; min-width: 0;
  font-size: 13px; color: #2f3437;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ai-pop__history-item-more[data-v-dd7b32d3] {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border: 0; border-radius: 5px;
  background: transparent; color: #6b7280;
  cursor: pointer;
  opacity: 0;
  transition: opacity .12s, background .12s;
  flex-shrink: 0;
}
.ai-pop__history-item:hover .ai-pop__history-item-more[data-v-dd7b32d3],
.ai-pop__history-item-more.is-active[data-v-dd7b32d3] { opacity: 1;
}
.ai-pop__history-item-more[data-v-dd7b32d3]:hover { background: #f1f1ef; color: #2f3437;
}

/* teleported to body — positioned via inline style fixed coords */
.ai-pop__history-item-menu[data-v-dd7b32d3] {
  z-index: 100001;
  padding: 4px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  box-shadow: 0 12px 28px -12px rgba(15, 23, 42, 0.22), 0 2px 6px -2px rgba(15, 23, 42, 0.05);
  font-family: 'SF Pro Display', 'Geist Sans', system-ui, sans-serif;
}
.ai-pop__history-item-menu-btn[data-v-dd7b32d3] {
  display: flex; align-items: center; gap: 8px;
  width: 100%;
  padding: 6px 8px;
  border: 0; border-radius: 6px;
  background: transparent;
  color: #2f3437; font-size: 12px; text-align: left;
  cursor: pointer;
}
.ai-pop__history-item-menu-btn[data-v-dd7b32d3]:hover { background: #fafafa;
}
.ai-pop__history-item-menu-btn--danger[data-v-dd7b32d3] { color: #9f2f2d;
}
.ai-pop__history-item-menu-btn--danger[data-v-dd7b32d3]:hover { background: #fdebec;
}
.ai-pop__history-rename-input[data-v-dd7b32d3] {
  flex: 1; min-width: 0;
  padding: 2px 6px;
  border: 1px solid #c4b5fd;
  border-radius: 5px;
  outline: 0;
  font-family: inherit; font-size: 13px;
  color: #2f3437;
  background: #fff;
}

/* hover preview floating card */
.ai-pop__history-preview[data-v-dd7b32d3] {
  position: fixed;
  z-index: 100000;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  box-shadow: 0 16px 40px -16px rgba(15, 23, 42, 0.18), 0 2px 6px -2px rgba(15, 23, 42, 0.05);
  font-family: 'SF Pro Display', 'Geist Sans', system-ui, sans-serif;
  pointer-events: none;
}
.ai-pop__history-preview-head[data-v-dd7b32d3] {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 6px;
}
.ai-pop__history-preview-mark[data-v-dd7b32d3] {
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 5px;
  background: linear-gradient(135deg, #c4b5fd, #f0abfc);
  color: #fff;
}
.ai-pop__history-preview-name[data-v-dd7b32d3] {
  font-size: 12px; font-weight: 600; color: #2f3437;
}
.ai-pop__history-preview-text[data-v-dd7b32d3] {
  font-size: 12.5px; line-height: 1.5; color: #4b5563;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── tiles de anexos pendentes (composer, estilo clickup) ─── */
.ai-pop__att-tiles[data-v-dd7b32d3] {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 10px 10px 4px 10px;
}
.ai-pop__att-tile[data-v-dd7b32d3] {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 10px;
  background: #f5f3ff;
  border: 1px solid #e9e5ff;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}
.ai-pop__att-tile[data-v-dd7b32d3]:hover {
  border-color: #c4b5fd;
  box-shadow: 0 4px 12px -4px rgba(124, 58, 237, 0.25);
}
.ai-pop__att-tile.is-uploading[data-v-dd7b32d3] { opacity: 0.85;
}
.ai-pop__att-tile.is-error[data-v-dd7b32d3] {
  background: #fef2f2; border-color: #fecaca;
}
.ai-pop__att-tile-img[data-v-dd7b32d3] {
  width: 100%; height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.ai-pop__att-tile-file[data-v-dd7b32d3] {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  padding: 6px;
  text-align: center;
}
.ai-pop__att-tile-file-icon[data-v-dd7b32d3] {
  color: #7c3aed;
}
.ai-pop__att-tile-file-name[data-v-dd7b32d3] {
  font-size: 9.5px; line-height: 1.2;
  color: #5b21b6;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 100%;
}
.ai-pop__att-tile-veil[data-v-dd7b32d3] {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(124, 58, 237, 0.18);
  backdrop-filter: blur(1px);
}
.ai-pop__att-tile-spinner[data-v-dd7b32d3] {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.85);
  border-top-color: transparent;
  animation: ai-pop-spin-dd7b32d3 0.7s linear infinite;
}
@keyframes ai-pop-spin-dd7b32d3 {
to { transform: rotate(360deg);
}
}
.ai-pop__att-tile-x[data-v-dd7b32d3] {
  position: absolute;
  top: 4px; right: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.78);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.15s ease, transform 0.15s ease, background 0.15s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.ai-pop__att-tile:hover .ai-pop__att-tile-x[data-v-dd7b32d3],
.ai-pop__att-tile-x[data-v-dd7b32d3]:focus-visible {
  opacity: 1;
  transform: scale(1);
}
.ai-pop__att-tile-x[data-v-dd7b32d3]:hover {
  background: #111827;
}

/* legado (mantido caso outros lugares ainda referenciem) */
.ai-pop__msg-atts[data-v-dd7b32d3] {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 6px;
}
.ai-pop__msg-att[data-v-dd7b32d3] {
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(196, 181, 253, 0.6);
  border-radius: 8px;
  font-size: 11.5px; color: #5b21b6;
  max-width: 240px;
}
.ai-pop__msg-att[data-v-dd7b32d3]:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: #c4b5fd;
}
.ai-pop__msg-att-thumb[data-v-dd7b32d3] {
  width: 26px; height: 26px; border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover; flex-shrink: 0;
}
.ai-pop__msg-att-icon[data-v-dd7b32d3] { color: #7c3aed; flex-shrink: 0;
}
.ai-pop__msg-att-name[data-v-dd7b32d3] {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 180px;
}

.kanban-card-main-description[data-v-e6b6aa7e] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  overflow: visible;
}
.kanban-main-desc-header[data-v-e6b6aa7e] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  min-height: 34px;
  gap: 8px;
  overflow: visible;
}
.kanban-main-desc-title-wrapper[data-v-e6b6aa7e] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 0;
}
.kanban-main-desc-icon[data-v-e6b6aa7e] {
  color: #475569;
}
.kanban-main-desc-title[data-v-e6b6aa7e] {
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  color: #0f172a;
}
.kanban-main-desc-loading[data-v-e6b6aa7e] {
  padding: 12px 0;
  color: #9ca3af;
  font-size: 13px;
}

/* ── Editor wrapper (always-editable, Notion-style) ─────────────────── */
.kanban-main-desc-editing-wrap[data-v-e6b6aa7e] {
  position: relative;
  width: 100%;
}
.kanban-main-desc-editing-wrap--readonly[data-v-e6b6aa7e] {
  opacity: 0.7;
  pointer-events: none;
}

/* ── CommentBar customizado pra descricao ─────────────────────────────
 * Visual minimal: sem sombra pesada, sem destaque visual quando idle —
 * o editor "se funde" ao panel ate o user interagir, igual Notion/ClickUp.
 */
.kanban-main-desc-composer[data-v-e6b6aa7e] .comment-bar {
  border: 1px solid transparent;
  background: transparent;
  border-radius: 10px;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.kanban-main-desc-composer[data-v-e6b6aa7e] .comment-bar:hover {
  background: #f8fafc;
}
.kanban-main-desc-composer[data-v-e6b6aa7e] .comment-bar--focused {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

/* Sem scroll interno — usa scroll do parent (ClickUp-style).
 * Override em 3 niveis (CommentBar wrapper / TextAreaDefault wrapper / ProseMirror).
 */
.kanban-main-desc-composer[data-v-e6b6aa7e] .comment-bar-editor,
.kanban-main-desc-composer[data-v-e6b6aa7e] .tiptap-editor-wrap {
  min-height: 80px;
  max-height: none !important;
  overflow-y: visible !important;
}

/* Gutter esquerdo (32px) reserva espaço pro botao do BlockHandle.
 * Como o plugin so' mostra UM elemento por vez (handle OU plus, nunca
 * os dois — ver plugin.js:228-241), basta caber handleWidth(22) +
 * handleGap(4) = 26px. Os 32px dao folga pequena pra encostar o botao
 * na parede com ~6px de respiro.
 *   handle/plus.left  = ProseMirror.left + (32 - 26) = ProseMirror.left + 6
 *   block.left        = ProseMirror.left + 32  ← texto bem proximo da parede
 */
.kanban-main-desc-composer[data-v-e6b6aa7e] .ProseMirror {
  min-height: 80px !important;
  max-height: none !important;
  padding: 8px 16px 8px 32px !important;
  font-size: 14px;
  line-height: 1.65;
  overflow-y: visible !important;
}

/* O EditorContent wrapper precisa permitir que os handles (siblings da
 * .ProseMirror) sejam visiveis mesmo quando o conteudo for curto. */
.kanban-main-desc-composer[data-v-e6b6aa7e] .text-area-default-ui-editor {
  position: relative;
  overflow: visible;
}
.kanban-main-desc-composer[data-v-e6b6aa7e] .ProseMirror h1,
.kanban-main-desc-composer[data-v-e6b6aa7e] .ProseMirror h2,
.kanban-main-desc-composer[data-v-e6b6aa7e] .ProseMirror h3 {
  font-weight: 700;
  line-height: 1.3;
  margin: 0.6em 0 0.3em;
  color: #0f172a;
}
.kanban-main-desc-composer[data-v-e6b6aa7e] .ProseMirror h1 { font-size: 1.4em;
}
.kanban-main-desc-composer[data-v-e6b6aa7e] .ProseMirror h2 { font-size: 1.2em;
}
.kanban-main-desc-composer[data-v-e6b6aa7e] .ProseMirror h3 { font-size: 1.05em;
}


/* Header actions wrapper */
.kanban-main-desc-header-actions[data-v-e6b6aa7e] {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  overflow: visible;
}

/* ── "Adicionar" dropdown button ───────────────────────────── */
.kanban-main-desc-add-wrap[data-v-e6b6aa7e] {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.kanban-main-desc-ai-btn[data-v-e6b6aa7e] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 5px;
  background: linear-gradient(135deg, #dbeafe 0%, #f8fafc 100%);
  color: #3b82f6;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 1;
  transition: border-color .15s, background .15s, transform .1s, box-shadow .15s;
}
.kanban-main-desc-ai-btn[data-v-e6b6aa7e]:hover {
  border-color: #93c5fd;
  background: linear-gradient(135deg, #ddd6fe 0%, #fbcfe8 100%);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.22);
  transform: translateY(-1px);
}
.kanban-main-desc-ai-btn[data-v-e6b6aa7e]:active { transform: scale(0.97);
}
.kanban-main-desc-ai-btn--active[data-v-e6b6aa7e] {
  border-color: #60a5fa;
  background: linear-gradient(135deg, #93c5fd 0%, #eff6ff 100%);
  color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}
/* canal sem integracao de IA configurada: visual desativado */
.kanban-main-desc-ai-btn--disabled[data-v-e6b6aa7e],
.kanban-main-desc-ai-btn[data-v-e6b6aa7e]:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: #f9fafb;
  color: #9ca3af;
  border-color: #e5e7eb;
}
.kanban-main-desc-ai-btn--disabled[data-v-e6b6aa7e]:hover {
  background: #f9fafb;
  border-color: #e5e7eb;
  box-shadow: none;
}
.kanban-main-desc-add-btn[data-v-e6b6aa7e] {
  display: inline-flex;
  align-items: center;
  background: #e5e7eb;
  border: 1px solid transparent;
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  height: 26px;
  box-sizing: border-box;
  white-space: nowrap;
  line-height: 1;
}
.kanban-main-desc-add-btn[data-v-e6b6aa7e]:hover {
  background: #e2e8f0;
  border-color: #b6c4d3;
  color: #1e293b;
}

/* Dropdown panel – uses position:fixed positioned via JS to escape overflow containers */
.kanban-main-desc-add-menu[data-v-e6b6aa7e] {
  position: fixed;
  z-index: 10000;
  width: 264px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.08),
    0 12px 28px -4px rgba(15, 23, 42, 0.16);
  overflow: hidden;
  animation: kanban-desc-menu-in-e6b6aa7e 0.14s ease;
  transform-origin: top right;
}
@keyframes kanban-desc-menu-in-e6b6aa7e {
from { opacity: 0; transform: scale(0.96) translateY(-4px);
}
to   { opacity: 1; transform: scale(1)    translateY(0);
}
}
.kanban-main-desc-add-menu-header[data-v-e6b6aa7e] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px 10px;
  border-bottom: 1px solid #f1f5f9;
}
.kanban-main-desc-add-menu-title[data-v-e6b6aa7e] {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.01em;
}
.kanban-main-desc-add-menu-close[data-v-e6b6aa7e] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: none;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  color: #9ca3af;
  padding: 0;
  transition: background 0.12s ease, color 0.12s ease;
}
.kanban-main-desc-add-menu-close[data-v-e6b6aa7e]:hover {
  background: #f1f5f9;
  color: #374151;
}
.kanban-main-desc-add-menu-body[data-v-e6b6aa7e] {
  padding: 6px;
}
.kanban-main-desc-add-menu-item[data-v-e6b6aa7e] {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 9px 10px;
  background: transparent;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.12s ease;
  box-sizing: border-box;
}
.kanban-main-desc-add-menu-item[data-v-e6b6aa7e]:hover {
  background-color: #f8fafc;
}
.kanban-main-desc-add-menu-item[data-v-e6b6aa7e]:active {
  background-color: #f1f5f9;
}
.kanban-main-desc-add-menu-icon[data-v-e6b6aa7e] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #475569;
  flex-shrink: 0;
  transition: background 0.12s ease;
}
.kanban-main-desc-add-menu-item:hover .kanban-main-desc-add-menu-icon[data-v-e6b6aa7e] {
  background: #e2e8f0;
}
.kanban-main-desc-add-menu-text[data-v-e6b6aa7e] {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.kanban-main-desc-add-menu-item-title[data-v-e6b6aa7e] {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
  white-space: nowrap;
}
.kanban-main-desc-add-menu-item-desc[data-v-e6b6aa7e] {
  font-size: 11px;
  font-weight: 400;
  color: #9ca3af;
  line-height: 1.3;
  white-space: normal;
}
.kanban-main-desc-responsible-wrap[data-v-e6b6aa7e] {
  position: fixed;
  z-index: 10001;
  padding: 0;
}
.kanban-main-desc-date-wrap[data-v-e6b6aa7e] {
  position: fixed;
  z-index: 10001;
  padding: 0;
}
.kanban-main-desc-transfer-error[data-v-e6b6aa7e] {
  margin: 8px 4px 2px;
  font-size: 12px;
  color: #dc2626;
}

/* ─── Efeitos da IA (painel mora em KanbanCardAIAssistant) ─────────── */

/* Shimmer no editor enquanto a IA processa */
.kanban-main-desc-editing-wrap--ai-processing[data-v-e6b6aa7e] .ProseMirror {
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.kanban-main-desc-shimmer[data-v-e6b6aa7e] {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 35%,
    rgba(196, 181, 253, 0.35) 50%,
    rgba(244, 114, 182, 0.18) 60%,
    transparent 75%,
    transparent 100%
  );
  background-size: 220% 100%;
  background-position: 100% 0;
  animation: kanban-ai-shimmer-e6b6aa7e 1.6s linear infinite;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 2;
}
@keyframes kanban-ai-shimmer-e6b6aa7e {
0%   { background-position: 100% 0;
}
100% { background-position: -120% 0;
}
}
.kanban-main-desc-editing-wrap--ai-applied[data-v-e6b6aa7e] {
  animation: kanban-ai-glow-e6b6aa7e 1.2s ease-out;
  border-radius: 10px;
}
@keyframes kanban-ai-glow-e6b6aa7e {
0%   { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.0);
}
20%  { box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
}
100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
}
}

/* Pílula Desfazer */
.kanban-main-desc-ai-undo-pill[data-v-e6b6aa7e] {
  position: absolute;
  bottom: -8px;
  right: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 8px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22);
  font-size: 12px;
  z-index: 5;
  transform: translateY(50%);
}
.kanban-main-desc-ai-undo-pill-icon[data-v-e6b6aa7e] {
  color: #c4b5fd;
}
.kanban-main-desc-ai-undo-pill-text[data-v-e6b6aa7e] {
  font-weight: 500;
  white-space: nowrap;
}
.kanban-main-desc-ai-undo-pill-sep[data-v-e6b6aa7e] {
  color: #475569;
}
.kanban-main-desc-ai-undo-pill-btn[data-v-e6b6aa7e] {
  background: transparent;
  border: none;
  color: #c4b5fd;
  font-size: 12px;
  font-weight: 600;
  padding: 0 2px;
  cursor: pointer;
  transition: color 0.15s ease;
}
.kanban-main-desc-ai-undo-pill-btn[data-v-e6b6aa7e]:hover {
  color: #ffffff;
  text-decoration: underline;
}
.ai-undo-pill-enter-active[data-v-e6b6aa7e],
.ai-undo-pill-leave-active[data-v-e6b6aa7e] {
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.ai-undo-pill-enter-from[data-v-e6b6aa7e],
.ai-undo-pill-leave-to[data-v-e6b6aa7e] {
  opacity: 0;
  transform: translateY(80%);
}

/* ─── Block actions menu (Notion-style) ─────────────────────────────
 * Renderizado inline (nao teleportado) com position:fixed, posicionado
 * via JS proximo ao drag handle clicado. Vive dentro do DialogContent
 * pra que o DismissableLayer nao o trate como "outside".
 */
.kanban-block-actions-menu[data-v-e6b6aa7e] {
  position: fixed;
  z-index: 10002;
  width: 232px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.08),
    0 12px 28px -4px rgba(15, 23, 42, 0.16);
  padding: 6px;
  animation: kanban-block-menu-in-e6b6aa7e 0.12s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@keyframes kanban-block-menu-in-e6b6aa7e {
from { opacity: 0; transform: scale(0.97) translateY(-2px);
}
to   { opacity: 1; transform: scale(1)    translateY(0);
}
}
.kbam-section[data-v-e6b6aa7e] {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.kbam-section--grid[data-v-e6b6aa7e] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}
.kbam-section-label[data-v-e6b6aa7e] {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94a3b8;
  padding: 8px 10px 4px;
  margin-top: 2px;
  border-top: 1px solid #f1f5f9;
}
.kbam-item[data-v-e6b6aa7e] {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 7px 9px;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  color: #1e293b;
  transition: background-color 0.1s ease, color 0.1s ease;
  box-sizing: border-box;
  min-width: 0;
}
.kbam-item[data-v-e6b6aa7e]:hover:not(:disabled) {
  background-color: #f1f5f9;
}
.kbam-item[data-v-e6b6aa7e]:active:not(:disabled) {
  background-color: #e2e8f0;
}
.kbam-item[data-v-e6b6aa7e]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.kbam-item--danger[data-v-e6b6aa7e] {
  color: #dc2626;
}
.kbam-item--danger[data-v-e6b6aa7e]:hover:not(:disabled) {
  background-color: #fef2f2;
  color: #b91c1c;
}
.kbam-item--danger .kbam-item-icon[data-v-e6b6aa7e] {
  color: #dc2626;
}
.kbam-item-icon[data-v-e6b6aa7e] {
  color: #64748b;
  flex-shrink: 0;
}
.kbam-item:hover .kbam-item-icon[data-v-e6b6aa7e] {
  color: #334155;
}
.kbam-item-label[data-v-e6b6aa7e] {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.ckd-task-item[data-v-62b41af1] {
  display: grid;
  grid-template-columns: 64px 1fr;
  -moz-column-gap: 12px;
       column-gap: 12px;
  padding: 4px 0;
  position: relative;
  transition: opacity 0.18s ease;
}
.ckd-task-item--done[data-v-62b41af1] {
  opacity: 0.78;
}
.ckd-task-item__rail[data-v-62b41af1] {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  padding-top: 2px;
}
.ckd-task-item__time[data-v-62b41af1] {
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.ckd-task-item__dot[data-v-62b41af1] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px currentColor;
  flex-shrink: 0;
  margin-right: -4px;
  position: relative;
  z-index: 1;
}
.ckd-task-item__dot--pending[data-v-62b41af1]  { color: #3b82f6; background: #3b82f6;
}
.ckd-task-item__dot--done[data-v-62b41af1]     { color: #10b981; background: #10b981;
}
.ckd-task-item__dot--cancelled[data-v-62b41af1]{ color: #94a3b8; background: #94a3b8;
}
.ckd-task-item__dot--expired[data-v-62b41af1]  { color: #ef4444; background: #ef4444;
}
.ckd-task-item__line[data-v-62b41af1] {
  position: absolute;
  top: 30px;
  bottom: -10px;
  right: -1px;
  width: 1px;
  background: linear-gradient(to bottom, #e2e8f0 0%, #e2e8f0 80%, transparent 100%);
}
.ckd-task-item__body[data-v-62b41af1] {
  min-width: 0;
  padding-bottom: 12px;
}
.ckd-task-item__row[data-v-62b41af1] {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  transition: border-color 0.18s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.18s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}
.ckd-task-item__row[data-v-62b41af1]:hover {
  border-color: #e2e8f0;
  background: #fafbfc;
}
.ckd-task-item__main[data-v-62b41af1] {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ckd-task-item__title-row[data-v-62b41af1] {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}
.ckd-task-item__title[data-v-62b41af1] {
  flex: 1;
  font-size: 13.5px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  letter-spacing: -0.005em;
  word-break: break-word;
}
.ckd-task-item--done .ckd-task-item__title[data-v-62b41af1] {
  text-decoration: line-through;
  text-decoration-color: rgba(148, 163, 184, 0.6);
  color: #64748b;
}
.ckd-task-item__actions[data-v-62b41af1] {
  display: flex;
  align-items: center;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.15s ease;
  flex-shrink: 0;
}
.ckd-task-item__row:hover .ckd-task-item__actions[data-v-62b41af1] {
  opacity: 1;
}
.ckd-task-item__action-btn[data-v-62b41af1] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  color: #94a3b8;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}
.ckd-task-item__action-btn[data-v-62b41af1]:hover {
  background: #f1f5f9;
  color: #475569;
}
.ckd-task-item__action-btn--danger[data-v-62b41af1]:hover {
  background: #fef2f2;
  color: #dc2626;
}
.ckd-task-item__action-btn--success[data-v-62b41af1]:hover {
  background: #ecfdf5;
  color: #047857;
}
.ckd-task-item__notes[data-v-62b41af1] {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.5;
  margin-top: 2px;
}
.ckd-task-item__meta[data-v-62b41af1] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.ckd-task-item__chip[data-v-62b41af1] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 22px;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  border-radius: 6px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.ckd-task-item__chip--user[data-v-62b41af1] {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
}
.ckd-task-item__priority-dot[data-v-62b41af1] {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.ckd-task-item__chip--prio-very-low[data-v-62b41af1] { background: #f8fafc; color: #64748b;
}
.ckd-task-item__chip--prio-low[data-v-62b41af1]      { background: #ecfdf5; color: #047857;
}
.ckd-task-item__chip--prio-medium[data-v-62b41af1]   { background: #fefce8; color: #a16207;
}
.ckd-task-item__chip--prio-high[data-v-62b41af1]     { background: #fff7ed; color: #c2410c;
}
.ckd-task-item__chip--prio-critical[data-v-62b41af1] { background: #fef2f2; color: #b91c1c;
}
.ckd-task-item__chip--status-pending[data-v-62b41af1]   { background: #eff6ff; color: #1d4ed8;
}
.ckd-task-item__chip--status-done[data-v-62b41af1]      { background: #ecfdf5; color: #047857;
}
.ckd-task-item__chip--status-cancelled[data-v-62b41af1] { background: #f1f5f9; color: #475569;
}
.ckd-task-item__chip--status-expired[data-v-62b41af1]   { background: #fef2f2; color: #b91c1c;
}

.tasks-tabs[data-v-86d0b05b] {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 20px;
}
.tasks-tab-btn[data-v-86d0b05b] {
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  line-height: 1;
}
.tasks-tab-btn[data-v-86d0b05b]:hover {
  color: #374151;
}
.tasks-tab-btn--active[data-v-86d0b05b] {
  color: #2563eb;
  border-bottom-color: #2563eb;
}
.tasks-reminders-panel[data-v-86d0b05b] {
  padding-top: 0;
}
.tasks-form[data-v-86d0b05b] {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.tasks-form-field[data-v-86d0b05b] {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 8px 12px;
  align-items: center;
}
.tasks-form-label[data-v-86d0b05b] {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.tasks-form-required[data-v-86d0b05b] {
  color: #dc2626;
  margin-left: 2px;
}
.tasks-textarea[data-v-86d0b05b] {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 13px;
  color: #111827;
  background: #fff;
  resize: vertical;
  outline: none;
  transition: border-color 0.15s;
  font-family: inherit;
}
.tasks-textarea[data-v-86d0b05b]:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}
.tasks-sheet-footer[data-v-86d0b05b] {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 0;
}
.tasks-recurrence-section[data-v-86d0b05b] {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}
.tasks-recurrence-toggle[data-v-86d0b05b] {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.tasks-toggle-track[data-v-86d0b05b] {
  display: inline-flex;
  align-items: center;
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: #d1d5db;
  transition: background 0.2s;
  flex-shrink: 0;
  padding: 2px;
}
.tasks-toggle-track--on[data-v-86d0b05b] {
  background: #2563eb;
}
.tasks-toggle-thumb[data-v-86d0b05b] {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  transform: translateX(0);
}
.tasks-toggle-thumb--on[data-v-86d0b05b] {
  transform: translateX(16px);
}
.tasks-toggle-label[data-v-86d0b05b] {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.tasks-toggle-badge[data-v-86d0b05b] {
  font-size: 11px;
  font-weight: 600;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 1px 8px;
}
@media (max-width: 768px) {
.tasks-form-field[data-v-86d0b05b] {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: stretch;
}
}
.kanban-card-tasks {
  display: flex;
  flex-direction: column;
  padding: 0;
}

/* ========================================
   TOOLBAR (search)
======================================== */
.kanban-card-tasks-toolbar {
  display: flex;
  align-items: center;
  padding: 0 0 16px 0;
}
.kanban-card-tasks-search {
  flex: 1;
}

/* ========================================
   FILTERS
======================================== */
.kanban-card-tasks-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.kanban-card-tasks-filter-label {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  white-space: nowrap;
  flex-shrink: 0;
}
.kanban-card-tasks-filter-combo {
  min-width: 140px;
  flex: 1;
}
.kanban-card-tasks-toolbar-right {
  margin-left: auto;
  flex-shrink: 0;
}

/* ========================================
   CREATE FORM
======================================== */
.kanban-card-tasks-create {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  margin-bottom: 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}
.kanban-card-tasks-create-input {
  width: 100%;
}
.kanban-card-tasks-create-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* ========================================
   LOADING & EMPTY STATES
======================================== */
.kanban-card-tasks-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.kanban-card-tasks-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 24px;
  gap: 12px;
}
.kanban-card-tasks-empty-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  border: 1px solid #e2e8f0;
}
.kanban-card-tasks-empty-icon {
  color: #94a3b8;
}
.kanban-card-tasks-empty-title {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin: 0;
  letter-spacing: -0.01em;
}
.kanban-card-tasks-empty-hint {
  font-size: 12.5px;
  color: #94a3b8;
  margin: 0;
  max-width: 280px;
  line-height: 1.5;
}

/* ========================================
   TIMELINE (task list grouped by date)
======================================== */
.kanban-card-tasks-timeline {
  display: flex;
  flex-direction: column;
}
.kanban-card-tasks-group {
  display: flex;
  flex-direction: column;
}

/* Date separator */
.kanban-card-tasks-date-separator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 20px;
}
.kanban-card-tasks-date-separator:first-child {
  margin-top: 0;
}
.kanban-card-tasks-date-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #e5e7eb, transparent);
}
.kanban-card-tasks-date-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 12px;
}
.kanban-card-tasks-date-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}
.kanban-card-tasks-date-text {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.5px;
}

/* ========================================
   LOAD MORE
======================================== */
.kanban-card-tasks-load-more {
  display: flex;
  justify-content: center;
  padding: 24px 0 8px;
}

/* ========================================
   TASK ITEM — timeline-style layout
======================================== */
.kanban-card-tasks-timeline .kanban-task-item {
  display: flex;
  gap: 20px;
  padding: 8px 0;
}

/* Left column: time + connector */
.kanban-card-tasks-timeline .kanban-task-item-left {
  display: flex;
  gap: 12px;
  width: 100px;
  flex-shrink: 0;
}
.kanban-card-tasks-timeline .kanban-task-item-time {
  font-size: 12px;
  color: #464a4f;
  font-weight: 500;
  text-align: right;
  width: 70px;
  padding-top: 2px;
  white-space: nowrap;
}
.kanban-card-tasks-timeline .kanban-task-item-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 18px;
}
.kanban-card-tasks-timeline .kanban-task-item-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 0 3px #ffffff;
}
.kanban-card-tasks-timeline .dot--active {
  background: #3b82f6;
}
.kanban-card-tasks-timeline .dot--done {
  background: #10b981;
}
.kanban-card-tasks-timeline .dot--cancelled {
  background: #6b7280;
}
.kanban-card-tasks-timeline .dot--expired {
  background: #f97316;
}
.kanban-card-tasks-timeline .kanban-task-item-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: #e5e7eb;
  margin-top: 4px;
}

/* Right column: content */
.kanban-card-tasks-timeline .kanban-task-item-right {
  display: flex;
  gap: 12px;
  flex: 1;
  padding-bottom: 12px;
}
.kanban-card-tasks-timeline .kanban-task-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kanban-card-tasks-timeline .kanban-task-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.kanban-card-tasks-timeline .kanban-task-item-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #6b7280;
  margin-top: 2px;
}
.kanban-card-tasks-timeline .kanban-task-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  flex: 1;
}
.kanban-card-tasks-timeline .kanban-task-item-title.title--done {
  text-decoration: line-through;
  color: #9ca3af;
}
.kanban-card-tasks-timeline .kanban-task-item-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.kanban-card-tasks-timeline .kanban-task-item:hover .kanban-task-item-actions {
  opacity: 1;
}
.kanban-card-tasks-timeline .kanban-task-item-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  border-radius: 6px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s ease;
}
.kanban-card-tasks-timeline .kanban-task-item-action-btn:hover {
  background: #f3f4f6;
  color: #374151;
}
.kanban-card-tasks-timeline .kanban-task-item-action-btn--danger:hover {
  background: #fef2f2;
  color: #ef4444;
}
.kanban-card-tasks-timeline .kanban-task-item-description {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* Meta (assignee, priority, status) */
.kanban-card-tasks-timeline .kanban-task-item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.kanban-card-tasks-timeline .kanban-task-item-assignee {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #9ca3af;
}
.kanban-card-tasks-timeline .kanban-task-item-priority,
.kanban-card-tasks-timeline .kanban-task-item-status {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 10px;
}

/* Priority variants */
.kanban-card-tasks-timeline .priority--very-low {
  background: #f0fdf4;
  color: #16a34a;
}
.kanban-card-tasks-timeline .priority--low {
  background: #f0fdf4;
  color: #22c55e;
}
.kanban-card-tasks-timeline .priority--medium {
  background: #fefce8;
  color: #ca8a04;
}
.kanban-card-tasks-timeline .priority--high {
  background: #fff7ed;
  color: #ea580c;
}
.kanban-card-tasks-timeline .priority--critical {
  background: #fef2f2;
  color: #dc2626;
}

/* Status variants */
.kanban-card-tasks-timeline .status--not-started {
  background: #f3f4f6;
  color: #6b7280;
}
.kanban-card-tasks-timeline .status--pending {
  background: #fefce8;
  color: #ca8a04;
}
.kanban-card-tasks-timeline .status--done {
  background: #f0fdf4;
  color: #16a34a;
}
.kanban-card-tasks-timeline .status--cancelled {
  background: #f3f4f6;
  color: #9ca3af;
}
.kanban-card-tasks-timeline .status--expired {
  background: #fff7ed;
  color: #ea580c;
}

/* ========================================
   SUBTASKS (nested under parent task)
======================================== */

/* Subtask hierarchy: smaller, indented, subordinate to parent */
.kanban-card-tasks-subtasks {
  margin-left: 96px;
  margin-top: 4px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.kanban-card-tasks-subtask-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.14s cubic-bezier(0.16, 1, 0.3, 1);
}
.kanban-card-tasks-subtask-row:hover {
  background: #f8fafc;
}
.kanban-card-tasks-subtask-checkbox {
  flex-shrink: 0;
}
.kanban-card-tasks-subtask-title {
  font-size: 12.5px;
  font-weight: 500;
  color: #475569;
  line-height: 1.4;
  letter-spacing: -0.005em;
  flex: 1;
  min-width: 0;
  word-break: break-word;
}
.kanban-card-tasks-subtask-title--done {
  text-decoration: line-through;
  text-decoration-color: rgba(148, 163, 184, 0.6);
  color: #94a3b8;
  font-weight: 400;
}

/* ========================================
   RESPONSIVE
======================================== */

/* Notebooks compactos */
@media (max-width: 1024px) {
.kanban-card-tasks-filters {
    gap: 8px;
}
.kanban-card-tasks-timeline .kanban-task-item-actions {
    opacity: 1;
}
}

/* Tablet portrait */
@media (max-width: 768px) {
.kanban-card-tasks-filters {
    flex-direction: column;
    align-items: stretch;
}
.kanban-card-tasks-toolbar-right {
    margin-left: 0;
}
.kanban-card-tasks-timeline .kanban-task-item {
    gap: 12px;
}
.kanban-card-tasks-timeline .kanban-task-item-left {
    width: 80px;
    gap: 8px;
}
.kanban-card-tasks-timeline .kanban-task-item-time {
    width: 55px;
    font-size: 11px;
}
.kanban-card-tasks-timeline .kanban-task-item-title {
    font-size: 13px;
}
.kanban-card-tasks-timeline .kanban-task-item-description {
    font-size: 12px;
}
}

/* Mobile */
@media (max-width: 640px) {
.kanban-card-tasks-timeline .kanban-task-item-left {
    width: 60px;
    gap: 6px;
}
.kanban-card-tasks-timeline .kanban-task-item-time {
    width: 40px;
    font-size: 10px;
}
.kanban-card-tasks-timeline .kanban-task-item {
    gap: 8px;
}
.kanban-card-tasks-create {
    padding: 12px;
}
}

/* ─── Section wrapper ──────────────────────────────────────────────────── */
.kanban-card-checklists-section[data-v-5bcefea1] {
  display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    flex: 1;
    min-height: 350px;
    overflow-y: auto;
    scrollbar-width: none;
    scrollbar-color: #d4d4d4 transparent;
}
.kanban-card-checklists-section[data-v-5bcefea1]:hover {
    scrollbar-width: thin;
}
.kanban-card-checklists-section[data-v-5bcefea1]::-webkit-scrollbar {
  width: 4px;
}
.kanban-card-checklists-section[data-v-5bcefea1]::-webkit-scrollbar-track {
  background: transparent;
}
.kanban-card-checklists-section[data-v-5bcefea1]::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 3px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.kanban-card-checklists-section[data-v-5bcefea1]:hover::-webkit-scrollbar-thumb {
  background: #d4d4d4;
}

/* glow ao receber checklist gerado pela card ai chat */
.kanban-card-checklists-section--ai-glow[data-v-5bcefea1] {
  position: relative;
}
.kanban-card-checklists-section--ai-glow[data-v-5bcefea1]::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 12px;
  pointer-events: none;
  background: radial-gradient(
    circle at top right,
    rgba(124, 58, 237, 0.18),
    rgba(236, 72, 153, 0.10) 55%,
    transparent 80%
  );
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.35);
  animation: kanban-checklist-ai-glow-5bcefea1 1.4s ease-out forwards;
  z-index: 0;
}
@keyframes kanban-checklist-ai-glow-5bcefea1 {
0%   { opacity: 0; transform: scale(0.985);
}
18%  { opacity: 1; transform: scale(1);
}
100% { opacity: 0; transform: scale(1);
}
}

/* ─── Container ────────────────────────────────────────────────────────── */
.checklist-container[data-v-5bcefea1] {
  margin-bottom: 2.5rem;
}

/* ─── Header ───────────────────────────────────────────────────────────── */
.checklist-header[data-v-5bcefea1] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.checklist-header-left[data-v-5bcefea1] {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.checklist-header-icon[data-v-5bcefea1] {
  color: #3b82f6;
  flex-shrink: 0;
}
.checklist-title[data-v-5bcefea1] {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  cursor: default;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checklist-title-input[data-v-5bcefea1] {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  border: 1px solid #3b82f6;
  border-radius: 4px;
  padding: 2px 6px;
  outline: none;
  flex: 1;
  min-width: 0;
}
.checklist-header-right[data-v-5bcefea1] {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.checklist-percentage[data-v-5bcefea1] {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
}
.checklist-delete-btn[data-v-5bcefea1] {
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, color 0.2s, background-color 0.2s;
}
.checklist-container:hover .checklist-delete-btn[data-v-5bcefea1] {
  opacity: 1;
}
.checklist-delete-btn[data-v-5bcefea1]:hover {
  color: #dc2626;
  background: #fef2f2;
}

/* ─── Progress bar ─────────────────────────────────────────────────────── */
.progress-track[data-v-5bcefea1] {
  width: 100%;
  background-color: #f1f5f9;
  border-radius: 9999px;
  height: 6px;
  margin-bottom: 1rem;
}
.progress-fill[data-v-5bcefea1] {
  background-color: #3b82f6;
  height: 100%;
  border-radius: 9999px;
  transition: width 0.3s ease;
}
.progress-fill--done[data-v-5bcefea1] {
  background-color: #22c55e;
}

/* ─── Items list ───────────────────────────────────────────────────────── */
.checklist-items[data-v-5bcefea1] {
  display: flex;
  flex-direction: column;
}
.checklist-item[data-v-5bcefea1] {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.4rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.checklist-item[data-v-5bcefea1]:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.checklist-item-text[data-v-5bcefea1] {
  margin-left: 0.75rem;
  flex: 1;
  font-size: 0.875rem;
  color: #1f2937;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checklist-item-text--done[data-v-5bcefea1] {
  text-decoration: line-through;
  color: #9ca3af;
}
.checklist-item-edit-input[data-v-5bcefea1] {
  margin-left: 0.75rem;
  flex: 1;
  font-size: 0.875rem;
  color: #1f2937;
  border: 1px solid #3b82f6;
  border-radius: 4px;
  padding: 2px 6px;
  outline: none;
}
.checklist-item-delete[data-v-5bcefea1] {
  opacity: 0;
  transition: opacity 0.2s;
  cursor: pointer;
  color: #cbd5e1;
  border: none;
  background: transparent;
  padding: 4px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.checklist-item:hover .checklist-item-delete[data-v-5bcefea1] {
  opacity: 1;
}
.checklist-item-delete[data-v-5bcefea1]:hover {
  color: #dc2626;
}

/* ─── New item input ───────────────────────────────────────────────────── */
.checklist-new-item-wrap[data-v-5bcefea1] {
  margin-top: 0.25rem;
}
.checklist-new-item-input[data-v-5bcefea1] {
  width: 100%;
  border: none;
  border-bottom: 1px solid transparent;
  padding: 0.25rem 0;
  font-style: italic;
  font-size: 0.875rem;
  color: #374151;
  outline: none;
  background: transparent;
}
.checklist-new-item-input[data-v-5bcefea1]:focus {
  border-bottom-color: #3b82f6;
}
.checklist-new-item-input[data-v-5bcefea1]::-moz-placeholder {
  color: #9ca3af;
}
.checklist-new-item-input[data-v-5bcefea1]::placeholder {
  color: #9ca3af;
}

/* ─── Promote / unpromote buttons ──────────────────────────────────────── */
.checklist-promote-btn[data-v-5bcefea1],
.checklist-unpromote-btn[data-v-5bcefea1] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 5px;
  background: transparent;
  color: #3b82f6;
  cursor: pointer;
  transition: background 0.12s ease;
}
.checklist-promote-btn[data-v-5bcefea1]:hover,
.checklist-unpromote-btn[data-v-5bcefea1]:hover { background: #eff6ff;
}

/* ─── Promoted badge ───────────────────────────────────────────────────── */
.checklist-promoted-badge[data-v-5bcefea1] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.4;
}
/* ============================================================
   KanbanCardContent — Tabs & content area (minimalist refresh)
   Paleta slate-only. Acento unico: #0f172a (slate-900).
   ============================================================ */
.pipeline-card-details-content-area[data-v-20705ba8] {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
}

/* ------- Tabs bar ------- */
.pipeline-card-details-tabs[data-v-20705ba8] {
  display: flex;
  gap: 4px;
  padding: 0 24px;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
  flex-shrink: 0;
}
.pipeline-card-details-tab-tooltip[data-v-20705ba8] {
  display: flex;
  align-items: stretch;
}
.pipeline-card-details-tab-tooltip[data-v-20705ba8] .tooltip-default-ui-wrapper {
  display: flex;
  align-items: stretch;
}
.pipeline-card-details-tab[data-v-20705ba8] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 14px 12px;
  border: none;
  background: transparent;
  border-bottom: 2px solid transparent;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease;
  position: relative;
  bottom: -1px;
  letter-spacing: -0.005em;
}
.pipeline-card-details-tab[data-v-20705ba8]:hover {
  color: #1e293b;
  background: transparent;
  border-radius: 0;
}
.pipeline-card-details-tab.pipeline-card-details-active[data-v-20705ba8] {
  color: #1e293b;
  border-bottom-color: #2563eb;
  font-weight: 600;
}
.pipeline-card-details-tab-label[data-v-20705ba8] {
  line-height: 1;
}

/* ------- Tab badge ------- */
.pipeline-card-details-tab-badge[data-v-20705ba8] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: background-color 160ms ease, color 160ms ease;
}
.pipeline-card-details-tab.pipeline-card-details-active .pipeline-card-details-tab-badge[data-v-20705ba8] {
  background: #2563eb;
  color: #ffffff;
}
.pipeline-card-details-tab:hover:not(.pipeline-card-details-active) .pipeline-card-details-tab-badge[data-v-20705ba8] {
  background: #dbeafe;
  color: #1e40af;
}

/* ------- Content area ------- */
.pipeline-card-details-tab-container[data-v-20705ba8] {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}
.pipeline-card-details-tab-content[data-v-20705ba8] {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  background: #ffffff;
}

/* ------- Responsive ------- */
@media (max-width: 1280px) {
.pipeline-card-details-tabs[data-v-20705ba8] {
    padding: 0 16px;
    gap: 2px;
}
.pipeline-card-details-tab[data-v-20705ba8] {
    padding: 12px 10px 10px;
    font-size: 12px;
}
}
@media (max-width: 1024px) {
.pipeline-card-details-tabs[data-v-20705ba8] {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.pipeline-card-details-tabs[data-v-20705ba8]::-webkit-scrollbar {
    display: none;
}
.pipeline-card-details-tab[data-v-20705ba8] {
    white-space: nowrap;
    flex-shrink: 0;
}
}
@media (max-width: 768px) {
.pipeline-card-details-tabs[data-v-20705ba8] {
    padding: 0 12px;
}
.pipeline-card-details-tab[data-v-20705ba8] {
    padding: 10px 8px 8px;
    font-size: 12px;
    gap: 6px;
}
.pipeline-card-details-tab-badge[data-v-20705ba8] {
    min-width: 16px;
    height: 16px;
    font-size: 10px;
    padding: 0 4px;
}
.pipeline-card-details-tab-content[data-v-20705ba8] {
    padding: 16px;
}
}
@media (max-width: 640px) {
.pipeline-card-details-tab[data-v-20705ba8] {
    padding: 9px 6px 7px;
    gap: 5px;
}
.pipeline-card-details-tab-content[data-v-20705ba8] {
    padding: 12px;
}
}

/* ------- Field inactive / empty states ------- */
.pipeline-card-details-field-inactive[data-v-20705ba8] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.field-inactive-text[data-v-20705ba8] {
  font-size: 13px;
  color: #94a3b8;
  font-style: italic;
  text-align: center;
  margin: 0;
}
.pipeline-card-description-wrapper[data-v-20705ba8] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pipeline-card-description-actions[data-v-20705ba8] {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  padding-top: 12px;
}
.pipeline-card-details-empty-message[data-v-20705ba8] {
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
  padding: 24px;
  margin: 0;
  width: 100%;
  max-width: 86%;
}
/* ============================================================
   KanbanCardOverview — left (description) + right (comments)
   Paleta slate-only. Hairlines, surfaces planas, type-driven.
   ============================================================ */

/*
 * When the overview tab is active the tab-content div gets BOTH classes.
 * Override the default scrolling so each column handles its own scroll.
 */
.pipeline-card-details-tab-content.kanban-card-overview[data-v-20705ba8] {
  overflow: hidden;
  padding: 0;
  margin: 0;
  background: transparent;
}
.kanban-card-overview[data-v-20705ba8] {
  display: flex;
  height: 100%;
  gap: 0;
  max-width: 100%;
}

/* ---------- Left column: Description ---------- */
.kanban-card-overview-left[data-v-20705ba8] {
  flex: 1;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-y: auto;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 0;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}
.kanban-card-overview-left[data-v-20705ba8]::-webkit-scrollbar {
  width: 5px;
}
.kanban-card-overview-left[data-v-20705ba8]::-webkit-scrollbar-track {
  background: transparent;
}
.kanban-card-overview-left[data-v-20705ba8]::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 3px;
}
.kanban-card-overview-left-inner[data-v-20705ba8] {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-height: 0;
}
.kanban-card-overview-card-title[data-v-20705ba8] {
  margin: 0;
  font-size: clamp(1.125rem, 1.6vw, 1.25rem);
  line-height: 1.2;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
  word-break: break-word;
  white-space: normal;
}
.kanban-card-overview-card-id[data-v-20705ba8] {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  vertical-align: middle;
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
}

/* ---------- Right column: Comments ---------- */
.kanban-card-overview-right[data-v-20705ba8] {
  width: 390px;
  min-width: 280px;
  max-width: 420px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-left: 1px solid #f1f5f9;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}
.kanban-card-overview-right[data-v-20705ba8]::-webkit-scrollbar {
  width: 5px;
}
.kanban-card-overview-right[data-v-20705ba8]::-webkit-scrollbar-track {
  background: transparent;
}
.kanban-card-overview-right[data-v-20705ba8]::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 3px;
}

/* Comments header (label uppercase muted) */
.kanban-card-overview-right[data-v-20705ba8] .kanban-overview-comments-title {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: static;
  top: auto;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
}
.kanban-card-overview-right[data-v-20705ba8] .kanban-overview-comments-sticky {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #ffffff;
  margin: 0;
  padding: 16px 20px 12px;
  border-bottom: 1px solid #f1f5f9;
}

/* List area scrolls with the right column */
.kanban-card-overview-right[data-v-20705ba8] .kanban-card-description-list-area {
  flex: 1;
  min-height: 0;
  padding: 12px 16px;
}

/* Add-comment form */
.kanban-card-overview-right[data-v-20705ba8] .kanban-card-description-add-section {
  border-bottom: none;
  padding-bottom: 12px;
  margin-bottom: 0;
}

/* Hide the duplicate descriptions title inside comments */
.kanban-card-overview-right[data-v-20705ba8] .kanban-card-description-title {
  display: none;
}

/* ---------- Card meta (created_at, etc.) ---------- */
.kanban-card-overview-meta[data-v-20705ba8] {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #94a3b8;
  font-size: 11px;
  margin-bottom: -4px;
}
.kanban-card-overview-meta-icon[data-v-20705ba8] {
  flex-shrink: 0;
  opacity: 0.8;
}

/* ---------- Attachments section ---------- */
.kanban-card-overview-attachments[data-v-20705ba8] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-width: 0;
  margin-top: 8px;
}
.kanban-card-overview-attachments-header[data-v-20705ba8] {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  justify-content: space-between;
}
.kanban-card-overview-attachments-header-left[data-v-20705ba8] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.kanban-card-overview-attachments-header-left[data-v-20705ba8] svg {
  color: #94a3b8;
}
.kanban-card-overview-attachments-title[data-v-20705ba8] {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}
.kanban-overview-attachments-subtitle[data-v-20705ba8] {
  display: none;
}
.btn-gray[data-v-20705ba8] {
  border: none;
  background: #f1f5f9;
  color: #334155;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.3;
  transition: background-color 160ms ease;
}
.btn-gray[data-v-20705ba8]:hover {
  background: #e2e8f0;
}
.kanban-overview-attachments-list[data-v-20705ba8] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kanban-overview-attachments-empty[data-v-20705ba8] {
  padding: 12px 14px;
  border-radius: 8px;
  background: #f8fafc;
  color: #94a3b8;
  font-size: 12px;
  font-style: italic;
}
.attachment-item[data-v-20705ba8] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background-color 160ms ease;
}
.attachment-item[data-v-20705ba8]:hover {
  background: #f8fafc;
}
.attachment-thumbnail[data-v-20705ba8] {
  width: 52px;
  height: 40px;
  border-radius: 6px;
  flex-shrink: 0;
  background: #f1f5f9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.attachment-thumbnail img[data-v-20705ba8] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.attachment-details[data-v-20705ba8] {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.attachment-name[data-v-20705ba8] {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.attachment-date[data-v-20705ba8] {
  font-size: 11px;
  color: #94a3b8;
}
.attachment-actions[data-v-20705ba8] {
  display: flex;
  align-items: center;
  gap: 4px;
}
.attachment-actions-menu-wrap[data-v-20705ba8] {
  position: relative;
}
.attachment-options-menu[data-v-20705ba8] {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 30;
  min-width: 168px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.08);
  padding: 4px;
}
.attachment-options-item[data-v-20705ba8] {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 8px 10px;
  font-size: 12px;
  color: #334155;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  transition: background-color 120ms ease;
}
.attachment-options-item-icon[data-v-20705ba8] {
  font-size: 13px;
  width: 13px;
  min-width: 13px;
  line-height: 1;
  color: #94a3b8;
}
.attachment-options-item[data-v-20705ba8]:hover {
  background: #f8fafc;
}
.attachment-options-item--danger[data-v-20705ba8] {
  color: #b91c1c;
}
.attachment-options-item--danger .attachment-options-item-icon[data-v-20705ba8] {
  color: #b91c1c;
}
.attachment-options-item--danger[data-v-20705ba8]:hover {
  background: #fef2f2;
}
.btn-icon[data-v-20705ba8] {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease;
}
.btn-icon[data-v-20705ba8]:hover {
  background: #f1f5f9;
  color: #0f172a;
}

/* Thumbnail variants: neutral palette (only images stay slightly distinct) */
.attachment-thumbnail--image[data-v-20705ba8] {
  background: #e2e8f0;
  color: #475569;
}
.attachment-thumbnail--pdf[data-v-20705ba8],
.attachment-thumbnail--excel[data-v-20705ba8],
.attachment-thumbnail--doc[data-v-20705ba8],
.attachment-thumbnail--file[data-v-20705ba8] {
  background: #f1f5f9;
  color: #475569;
}

/* ---------- Compact description padding ---------- */
.kanban-card-overview-left .kanban-card-main-description[data-v-20705ba8] {
  gap: 6px;
}
.kanban-card-overview-left[data-v-20705ba8] .kanban-main-desc-empty {
  min-height: 60px;
}

/* Fix description wrapper overflow inside the right column */
.kanban-card-overview-right[data-v-20705ba8] .kanban-card-description-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  padding: 0;
}
.kanban-card-overview-right[data-v-20705ba8] .kanban-card-description-add-form,
.kanban-card-overview-right[data-v-20705ba8] .comment-item__inline-reply-form {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.kanban-card-overview-right[data-v-20705ba8] .kanban-card-description-add-toolbar,
.kanban-card-overview-right[data-v-20705ba8] .comment-item__inline-reply-toolbar {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
.kanban-card-overview-right[data-v-20705ba8] .kanban-card-description-add-toolbar-right,
.kanban-card-overview-right[data-v-20705ba8] .comment-item__inline-reply-toolbar-right {
  min-width: 0;
}
.pipeline-card-details-tabs[data-v-20705ba8] .tooltip-default-ui-wrapper {
  display: flex;
  align-items: stretch;
  max-width: 100%;
}
.kanban-card-overview-right[data-v-20705ba8] .ProseMirror {
  overflow-x: hidden;
  word-break: break-word;
}

/* ---------- Responsive ---------- */
@media (max-width: 1400px) and (min-width: 1025px) {
.kanban-card-overview-right[data-v-20705ba8] {
    width: 360px;
    min-width: 300px;
    max-width: 380px;
}
}
@media (max-width: 1280px) and (min-width: 1025px) {
.kanban-card-overview-right[data-v-20705ba8] {
    width: 320px;
    min-width: 280px;
    max-width: 340px;
}
.kanban-card-overview-left[data-v-20705ba8] {
    padding: 16px 18px;
}
}
@media (max-width: 1024px) {
.pipeline-card-details-tab-content.kanban-card-overview[data-v-20705ba8] {
    overflow-y: auto;
}
.kanban-card-overview[data-v-20705ba8] {
    flex-direction: column;
    height: auto;
}
.kanban-card-overview-left[data-v-20705ba8] {
    overflow-y: visible;
    overflow-x: hidden;
    padding-bottom: 0;
    align-items: stretch;
}
.kanban-card-overview-left-inner[data-v-20705ba8] {
    max-width: 100%;
}
.kanban-card-overview-right[data-v-20705ba8] {
    width: 100%;
    min-width: 0;
    max-width: none;
    border-left: none;
    border-top: 1px solid #f1f5f9;
    height: 480px;
}
}
@media (max-width: 768px) {
.kanban-card-overview-left[data-v-20705ba8] {
    padding: 14px;
}
.kanban-card-overview-left-inner[data-v-20705ba8] {
    gap: 12px;
}
.kanban-card-overview-meta[data-v-20705ba8] {
    font-size: 11px;
}
.kanban-card-overview-right[data-v-20705ba8] {
    height: 400px;
}
.attachment-thumbnail[data-v-20705ba8] {
    width: 48px;
    height: 36px;
}
.attachment-name[data-v-20705ba8] {
    font-size: 12px;
}
.attachment-date[data-v-20705ba8] {
    font-size: 10px;
}
}
@media (max-width: 640px) {
.kanban-card-overview-left[data-v-20705ba8] {
    padding: 12px;
}
.kanban-card-overview-right[data-v-20705ba8] {
    height: 360px;
}
.attachment-thumbnail[data-v-20705ba8] {
    width: 44px;
    height: 32px;
}
}

.pipeline-column-time[data-v-36e0ae74] {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  padding: 0;
  pointer-events: none;
}
.pipeline-column-time-label[data-v-36e0ae74] {
  font-size: 11px;
  color: var(--color-text-muted, #9ca3af);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.pipeline-container {
  flex: 0 1 82%;
  min-width: 0;
  max-width: 90%;
  margin-left: auto;
  padding: 10px 0 10px;
}
.pipeline-progress {
  position: relative;
  width: 100%;
  overflow: visible;
}
.pipeline-progress-line {
  position: absolute;
  top: 50%;
  left: 11px;
  right: 11px;
  height: 2px;
  background: #e5e9f2;
  border-radius: 1px;
  transform: translateY(-50%);
  overflow: hidden;
}
.pipeline-progress-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: #2273e0;
  border-radius: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pipeline-stages {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 11px;
}
.pipeline-stage {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
.pipeline-stage--first {
  justify-content: flex-start;
}
.pipeline-stage--last {
  justify-content: flex-end;
}
.stage-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stage-dot {
  width: 22px;
  height: 22px;
  border: 2px solid #e5e9f2;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.05);
}
.stage-dot--completed {
  border-color: #2273e0;
  background: #2273e0;
  color: #ffffff;
}
.stage-dot--completed-gain {
  border-color: #00C97A;
  background: #00C97A;
}
.stage-dot--completed-loss {
  border-color: #FF2D2D;
  background: #FF2D2D;
}
.stage-dot--upcoming {
  border-color: #d1d8e4;
}
.stage-dot:hover {
  border-color: #2273e0;
  transform: scale(1.05);
}
.dot-inner {
  width: 8px;
  height: 8px;
  background: #d1d8e4;
  border-radius: 50%;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dot-inner--gain {
  background: #00C97A;
}
.dot-inner--loss {
  background: #FF2D2D;
}
.stage-dot--completed .dot-inner {
  background: transparent;
}
.stage-dot--upcoming:hover .dot-inner {
  background: #2273e0;
}
.current-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Time label is absolutely positioned, so it won't shift button off center */
}
.current-stage-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2273e0;
  color: #ffffff;
  padding: 5px 11px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(124, 156, 191, 0.2);
  white-space: nowrap;
}
.current-stage-button:hover {
  background: #6b8bb0;
  box-shadow: 0 4px 12px rgba(124, 156, 191, 0.3);
  transform: translateY(-1px);
}
.current-stage-button--gain {
  background: #00C97A;
  box-shadow: 0 2px 8px rgba(89, 213, 160, 0.2);
}
.current-stage-button--loss {
  background: #FF2D2D;
  box-shadow: 0 2px 8px rgba(255, 136, 136, 0.2);
}
.current-stage-button--gain:hover {
  background: #4bc58a;
  box-shadow: 0 4px 12px rgba(89, 213, 160, 0.3);
}
.current-stage-button--loss:hover {
  background: #ff6b6b;
  box-shadow: 0 4px 12px rgba(255, 136, 136, 0.3);
}
.current-stage-icon {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffffff;
  color: #2273e0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.current-stage-icon--thumb {
  background: transparent;
  color: #ffffff;
}
.chevron-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.chevron-rotated {
  transform: rotate(180deg);
}
.pipeline-stage-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  min-width: 220px;
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(124, 156, 191, 0.15);
  padding: 8px 0;
  z-index: 30;
  overflow: hidden;
}
.pipeline-stage-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 18px;
  font-size: 13px;
  background: transparent;
  border: none;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.pipeline-stage-dropdown-item:hover {
  background: #f7f9fc;
  color: #2d3748;
}
.pipeline-stage-dropdown-item--active {
  background: #f0f4f8;
  color: #2273e0;
  font-weight: 600;
}
.pipeline-stage-dropdown-index {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2273e0;
  color: #ffffff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb-icon {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  color: #d1d8e4;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.thumb-icon--gain {
    color: #00C97A;
}
.thumb-icon--loss {
    color: #FF2D2D;
}
.stage-wrapper .thumb-icon--gain,
  .current-stage .thumb-icon--gain,
  .stage-wrapper:hover .thumb-icon--gain,
  .current-stage:hover .thumb-icon--gain {
    color: #4bc58a;
}
.stage-wrapper .thumb-icon--loss,
  .current-stage .thumb-icon--loss,
  .stage-wrapper:hover .thumb-icon--loss,
  .current-stage:hover .thumb-icon--loss {
    color: #ff6b6b;
}
.stage-wrapper .thumb-icon[name="thumb-up"],
.current-stage .thumb-icon[name="thumb-up"] {
  color: #00C97A;
}
.stage-wrapper .thumb-icon[name="thumb-down"],
.current-stage .thumb-icon[name="thumb-down"] {
  color: #FF2D2D;
}
.stage-wrapper:hover .thumb-icon[name="thumb-up"],
.current-stage:hover .thumb-icon[name="thumb-up"] {
  color: #4bc58a;
}
.stage-wrapper:hover .thumb-icon[name="thumb-down"],
.current-stage:hover .thumb-icon[name="thumb-down"] {
  color: #ff6b6b;
}
.pipeline-dropdown-enter-active,
.pipeline-dropdown-leave-active {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.pipeline-dropdown-enter,
.pipeline-dropdown-leave-to {
  opacity: 0;
  transform: translateY(-4px);
}
@media (max-width: 640px) {
.pipeline-stages {
    gap: 6px;
    padding: 0 12px;
}
.current-stage-button {
    font-size: 12px;
    padding: 6px 12px;
}
.stage-dot {
    width: 24px;
    height: 24px;
}
}

/* Skeleton Loading */
.pipeline-skeleton {
  position: relative;
  width: 100%;
  padding: 16px;
}
.skeleton-line {
  height: 2px;
  background: linear-gradient(90deg, #e5e9f2 25%, #f0f4f8 50%, #e5e9f2 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 1px;
  margin-bottom: 20px;
}
.skeleton-dots {
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
}
.skeleton-dot {
  width: 28px;
  height: 28px;
  background: linear-gradient(90deg, #e5e9f2 25%, #f0f4f8 50%, #e5e9f2 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 50%;
}
@keyframes shimmer {
0% {
    background-position: 200% 0;
}
100% {
    background-position: -200% 0;
}
}
/* ============================================================
   KanbanCardInfoSidebar — minimalist slate refresh
   Paleta slate-only. Hairlines + spacing system 4/8/12/16.
   ============================================================ */
.pipeline-card-info-sidebar[data-v-b51cd493] {
  width: 360px;
  min-width: 280px;
  max-width: 360px;
  font-size: 13px;
  background-color: #ffffff;
  border-right: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  overflow: visible;
  flex-shrink: 0;
  position: relative;
  z-index: 0;
  color: #0f172a;
  transition: width 0.3s ease-in-out, min-width 0.3s ease-in-out, max-width 0.3s ease-in-out;
}
.pipeline-card-info-sidebar--collapsed[data-v-b51cd493] {
  width: 48px;
  min-width: 48px;
  max-width: 48px;
}
.pipeline-card-info-collapsed-actions[data-v-b51cd493] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
}
.pipeline-card-info-collapsed-btn[data-v-b51cd493] {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #94a3b8;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}
.pipeline-card-info-collapsed-btn[data-v-b51cd493]:hover {
  background-color: #f1f5f9;
  color: #0f172a;
}
.pipeline-card-info-collapsed-btn[data-v-b51cd493]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* ---------- Scroll area ---------- */
.pipeline-card-info-sidebar-scrollable[data-v-b51cd493] {
  flex: 1;
  overflow-y: auto;
  min-width: 0;
}
.pipeline-card-info-sidebar-scrollable[data-v-b51cd493]::-webkit-scrollbar {
  width: 4px;
}
.pipeline-card-info-sidebar-scrollable[data-v-b51cd493]::-webkit-scrollbar-track {
  background: transparent;
}
.pipeline-card-info-sidebar-scrollable[data-v-b51cd493]::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 10px;
}
.pipeline-card-info-sidebar-scrollable[data-v-b51cd493]::-webkit-scrollbar-thumb:hover {
  background: #cbd5e1;
}

/* ---------- Layout helpers ---------- */
.pipeline-card-info-flex-between[data-v-b51cd493] {
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: 12px;
}
.pipeline-card-info-flex-center[data-v-b51cd493] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pipeline-card-info-size-18[data-v-b51cd493] { font-size: 18px;
}
.pipeline-card-info-section-border[data-v-b51cd493] {
  border-bottom: 1px solid #f1f5f9;
}

/* ---------- Accordion header (section labels) ---------- */
.pipeline-card-info-accordion-header[data-v-b51cd493] {
  padding: 14px 16px;
  cursor: pointer;
  transition: background-color 160ms ease;
}
.pipeline-card-info-history-header[data-v-b51cd493] {
  padding: 14px 16px;
}
.pipeline-card-info-accordion-header[data-v-b51cd493]:hover {
  background-color: transparent;
}
.pipeline-card-info-accordion-title[data-v-b51cd493] {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pipeline-card-info-accordion-content[data-v-b51cd493] {
  padding: 0 16px 14px;
  position: relative;
  z-index: 1;
}
.pipeline-card-info-history-content[data-v-b51cd493] {
  padding: 0 16px 14px;
}
.pipeline-card-info-accordion-content.is-hidden[data-v-b51cd493] {
  display: none;
}

/* ---------- Card title ---------- */
.pipeline-card-info-card-title-wrap[data-v-b51cd493] {
  margin-bottom: 12px;
}
.pipeline-card-info-card-title[data-v-b51cd493] {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  color: #0f172a;
  letter-spacing: -0.005em;
}
.pipeline-card-info-icon-edit[data-v-b51cd493] {
  color: #cbd5e1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 160ms ease, color 160ms ease;
}
.pipeline-card-info-card-title-wrap:hover .pipeline-card-info-icon-edit[data-v-b51cd493] {
  color: #0f172a;
  opacity: 1;
}

/* ---------- Inline edit ---------- */
.pipeline-card-info-inline-edit-wrap[data-v-b51cd493] {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.pipeline-card-info-inline-input[data-v-b51cd493] {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
  color: #0f172a;
  background: #ffffff;
  transition: border-color 160ms ease;
}
.pipeline-card-info-inline-input[data-v-b51cd493]:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}
.pipeline-card-info-inline-actions[data-v-b51cd493] {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pipeline-card-info-inline-btn[data-v-b51cd493] {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #334155;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}
.pipeline-card-info-inline-btn[data-v-b51cd493]:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}
.pipeline-card-info-inline-btn-save[data-v-b51cd493] {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}
.pipeline-card-info-inline-btn-save[data-v-b51cd493]:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}
.pipeline-card-info-inline-icon-btn[data-v-b51cd493] {
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- Transfer popover ---------- */
.pipeline-card-info-transfer-popover[data-v-b51cd493] {
  position: fixed;
  z-index: 99999;
  width: 240px;
  border-radius: 8px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.12);
}
.pipeline-card-info-transfer-error[data-v-b51cd493] {
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 11px;
  color: #b91c1c;
}

/* ---------- Info text helpers ---------- */
.pipeline-card-info-info-details[data-v-b51cd493] {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pipeline-card-info-info-text[data-v-b51cd493] {
  font-size: 12px;
  margin: 0;
  color: #334155;
}
.pipeline-card-info-text-muted[data-v-b51cd493] {
  color: #64748b;
}
.pipeline-card-info-text-light[data-v-b51cd493] {
  color: #94a3b8;
}
.pipeline-card-info-info-strong[data-v-b51cd493] {
  font-weight: 600;
  color: #0f172a;
}
.pipeline-card-info-name-column[data-v-b51cd493] {
  font-weight: 600;
  color: #0f172a;
}

/* ---------- Quick action buttons ---------- */
.pipeline-card-info-quick-actions[data-v-b51cd493] {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  position: relative;
}
.pipeline-card-info-action-btn[data-v-b51cd493] {
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #475569;
  transition: background-color 160ms ease, color 160ms ease;
}
.pipeline-card-info-action-btn[data-v-b51cd493]:hover {
  background-color: #f1f5f9;
  color: #0f172a;
}
.pipeline-card-info-action-btn[data-v-b51cd493]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pipeline-card-info-btn-options[data-v-b51cd493] {
  margin-left: auto;
  color: #475569;
  background: transparent;
}
.pipeline-card-info-btn-options[data-v-b51cd493]:hover {
  background-color: #f1f5f9;
  color: #0f172a;
}

/* ---------- Conversation dropdown menu ---------- */
.pipeline-card-info-conversation-wrap[data-v-b51cd493] {
  position: relative;
}
.pipeline-card-info-conversation-menu[data-v-b51cd493] {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 9999;
  min-width: 230px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.12);
  padding: 4px;
  overflow: hidden;
}

/* ---------- Options dropdown menu ---------- */
.pipeline-card-info-options-wrap[data-v-b51cd493] {
  margin-left: auto;
  position: relative;
}
.pipeline-card-info-options-menu[data-v-b51cd493] {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 9999;
  min-width: 180px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.12);
  padding: 4px;
  overflow: hidden;
}
.pipeline-card-info-options-item[data-v-b51cd493] {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #334155;
  text-align: left;
  border-radius: 6px;
  transition: background-color 120ms ease;
}
.pipeline-card-info-options-item[data-v-b51cd493]:hover {
  background-color: #f8fafc;
}
.pipeline-card-info-options-item--danger[data-v-b51cd493] {
  color: #b91c1c;
}
.pipeline-card-info-options-item--danger[data-v-b51cd493]:hover {
  background-color: #fef2f2;
}

/* ---------- Owner / value sections ---------- */
.pipeline-card-info-owner-section[data-v-b51cd493],
.pipeline-card-info-value-section[data-v-b51cd493] {
  padding: 14px 16px;
}

/* History é accordion (header + content já têm padding próprio) — sem padding duplicado */
.pipeline-card-info-history-section[data-v-b51cd493] {
  padding: 0;
}

/* ---------- Date section ---------- */
.pipeline-card-info-dates-section[data-v-b51cd493] {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pipeline-card-info-date-close-header[data-v-b51cd493] {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed #f1f5f9;
}
.pipeline-card-info-date-edit-wrap[data-v-b51cd493] {
  margin-top: 4px;
}
.pipeline-card-info-date-picker-wrap[data-v-b51cd493] {
  margin-top: 6px;
  position: relative;
  z-index: 200;
}

/* Hide the text input — only the calendar popup is shown in sidebar context */
.pipeline-card-info-date-picker-wrap .dp-trigger[data-v-b51cd493] {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* ---------- Section labels ---------- */
.pipeline-card-info-section-label[data-v-b51cd493] {
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ---------- Owner / avatar ---------- */
.pipeline-card-info-owner-wrap[data-v-b51cd493] {
  gap: 10px;
}
.pipeline-card-info-avatar[data-v-b51cd493] {
  width: 28px;
  height: 28px;
  background-color: #151f38;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 0 0 2px #e0e7ff;
  letter-spacing: 0.02em;
}
.pipeline-card-info-owner-name[data-v-b51cd493] {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  color: #0f172a;
}
.pipeline-card-info-owner-role[data-v-b51cd493] {
  font-size: 10px;
  color: #94a3b8;
  margin: 0;
}

/* ---------- Edit pencil (muted) ---------- */
.pipeline-card-info-icon-edit-muted[data-v-b51cd493] {
  color: #cbd5e1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 160ms ease, color 160ms ease;
}
.pipeline-card-info-group:hover .pipeline-card-info-icon-edit-muted[data-v-b51cd493] {
  color: #475569;
  opacity: 1;
}

/* ---------- Value section ---------- */
.pipeline-card-info-value-header[data-v-b51cd493] {
  margin-bottom: 6px;
}
.pipeline-card-info-value-label[data-v-b51cd493] {
  margin: 0;
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.pipeline-card-info-value-amount[data-v-b51cd493] {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* ---------- Date values ---------- */
.pipeline-card-info-date-label[data-v-b51cd493] {
  font-size: 9px;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.08em;
}
.pipeline-card-info-date-value[data-v-b51cd493] {
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
}
.pipeline-card-info-date-value-end[data-v-b51cd493] {
  color: #b91c1c;
}
.pipeline-card-info-date-icon-start[data-v-b51cd493] { color: #94a3b8;
}
.pipeline-card-info-date-icon-end[data-v-b51cd493] { color: #b91c1c;
}

/* ---------- Observation ---------- */
.pipeline-card-info-observation-section[data-v-b51cd493] {
  padding: 0;
}
.pipeline-card-info-observation-loading[data-v-b51cd493] {
  font-size: 11px;
  color: #94a3b8;
  padding: 8px 0;
}
.pipeline-card-info-observation-content[data-v-b51cd493] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0 0;
}
.pipeline-card-info-observation-text[data-v-b51cd493] {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.55;
  margin: 0;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pipeline-card-info-observation-date[data-v-b51cd493] {
  font-size: 10px;
  color: #94a3b8;
}
.pipeline-card-info-observation-empty[data-v-b51cd493] {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
  padding: 8px 0;
  font-style: italic;
}
.pipeline-card-info-icon-button[data-v-b51cd493] {
  border: none;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 160ms ease, color 160ms ease;
}
.pipeline-card-info-icon-button[data-v-b51cd493]:hover {
  background-color: #f1f5f9;
  color: #0f172a;
}

/* ---------- History ---------- */
.pipeline-card-info-history-list[data-v-b51cd493] {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pipeline-card-info-history-item[data-v-b51cd493] {
  display: flex;
  gap: 10px;
}
.pipeline-card-info-history-line[data-v-b51cd493] {
  width: 3px;
  border-radius: 9999px;
}
.pipeline-card-info-line-blue[data-v-b51cd493] { background-color: #2563eb;
}
.pipeline-card-info-line-gray[data-v-b51cd493] { background-color: #cbd5e1;
}
.pipeline-card-info-history-text[data-v-b51cd493] {
  font-size: 12px;
  color: #475569;
  margin: 0;
  line-height: 1.45;
}
.pipeline-card-info-history-text strong[data-v-b51cd493] {
  font-weight: 600;
  color: #0f172a;
}

/* ---------- Footer ---------- */
.pipeline-card-info-footer[data-v-b51cd493] {
  padding: 12px 16px;
  background-color: #fafbfc;
  border-top: 1px solid #f1f5f9;
  gap: 8px;
}
.pipeline-card-info-footer-avatar[data-v-b51cd493] {
  width: 24px;
  height: 24px;
  background-color: #e2e8f0;
  color: #475569;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
}
.pipeline-card-info-footer-text[data-v-b51cd493] {
  font-size: 11px;
  color: #64748b;
}
.pipeline-card-info-footer-text strong[data-v-b51cd493] {
  font-weight: 600;
  color: #0f172a;
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
.pipeline-card-info-sidebar[data-v-b51cd493] {
    width: 280px;
    min-width: 240px;
    max-width: 300px;
}
}
@media (max-width: 1024px) {
.pipeline-card-info-sidebar[data-v-b51cd493] {
    display: none;
}
}
@media (max-width: 768px) {
.pipeline-card-info-sidebar[data-v-b51cd493] {
    display: flex;
    width: 100%;
    min-width: 0;
    max-width: none;
    max-height: 360px;
    border-right: none;
    border-top: 1px solid #f1f5f9;
}
.pipeline-card-info-accordion-header[data-v-b51cd493],
  .pipeline-card-info-owner-section[data-v-b51cd493],
  .pipeline-card-info-value-section[data-v-b51cd493],
  .pipeline-card-info-history-section[data-v-b51cd493],
  .pipeline-card-info-dates-section[data-v-b51cd493],
  .pipeline-card-info-accordion-content[data-v-b51cd493],
  .pipeline-card-info-history-content[data-v-b51cd493] {
    padding-left: 14px;
    padding-right: 14px;
}
}
@media (max-width: 640px) {
.pipeline-card-info-accordion-title[data-v-b51cd493] {
    font-size: 10px;
}
.pipeline-card-info-card-title[data-v-b51cd493] {
    font-size: 14px;
}
.pipeline-card-info-value-amount[data-v-b51cd493] {
    font-size: 16px;
}
}

/* ============ Priority section ============ */
.pipeline-card-info-priority-section[data-v-b51cd493] {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pipeline-card-info-priority-value[data-v-b51cd493] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #334155;
  font-weight: 500;
}
.pipeline-card-info-priority-label[data-v-b51cd493] {
  font-weight: 500;
}
.pipeline-card-info-priority-flag[data-v-b51cd493] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
.pipeline-card-info-priority-flag[data-v-b51cd493] svg {
  fill: currentColor;
}
.pipeline-card-info-priority-flag--critical[data-v-b51cd493] { color: #dc2626;
}
.pipeline-card-info-priority-flag--high[data-v-b51cd493]     { color: #f59e0b;
}
.pipeline-card-info-priority-flag--medium[data-v-b51cd493]   { color: #2563eb;
}
.pipeline-card-info-priority-flag--low[data-v-b51cd493]      { color: #94a3b8;
}
.pipeline-card-info-priority-flag--none[data-v-b51cd493]     { color: #cbd5e1;
}
.pipeline-card-info-priority-flag--none[data-v-b51cd493] svg { fill: none;
}

/* ============ Priority popover (teleportado pra body) ============ */
.pipeline-card-info-priority-popover[data-v-b51cd493] {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 200px;
  background: #ffffff;
  border: 1px solid rgb(226 232 240);
  border-radius: 10px;
  box-shadow:
    0 12px 24px -8px rgba(15, 23, 42, 0.18),
    0 4px 8px -2px rgba(15, 23, 42, 0.08);
  padding: 5px;
  pointer-events: auto;
}
.pipeline-card-info-priority-popover-header[data-v-b51cd493] {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(100 116 139);
  padding: 8px 10px 6px;
}
.pipeline-card-info-priority-option[data-v-b51cd493] {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 13px;
  color: rgb(30 41 59);
  text-align: left;
  cursor: pointer;
  transition: background-color 120ms ease-out;
}
.pipeline-card-info-priority-option[data-v-b51cd493]:hover {
  background: rgb(248 250 252);
}
.pipeline-card-info-priority-option--active[data-v-b51cd493] {
  background: rgb(241 245 249);
}
.pipeline-card-info-priority-option-label[data-v-b51cd493] {
  flex: 1;
}
.pipeline-card-info-priority-option-check[data-v-b51cd493] {
  color: rgb(15 23 42);
  flex-shrink: 0;
}
.pipeline-card-info-priority-divider[data-v-b51cd493] {
  height: 1px;
  background: rgb(241 245 249);
  margin: 4px 6px;
}
.pipeline-card-info-priority-option--clear[data-v-b51cd493] {
  color: rgb(100 116 139);
}
.pipeline-card-info-priority-option--clear[data-v-b51cd493]:hover {
  color: rgb(51 65 85);
}
.pipeline-card-details[data-v-1028dfc1] {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  background: #fafbfc;
  position: fixed;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  top: 0;
  left: 68px;
  right: 0;
  bottom: 0;
  overflow: hidden;
  color: #1a1d29;
  line-height: 1.5;
  z-index: 1000;
  box-sizing: border-box;
  max-width: 100vw;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pipeline-card-details-main-content[data-v-1028dfc1] {
  /* --pipeline-card-details-tabs-offset: 56px; */
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
  gap: 0;
}
.pipeline-card-details-top[data-v-1028dfc1] {
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 24px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.pipeline-card-details-top-breadcrumb[data-v-1028dfc1] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 0;
  font-size: 13px;
  line-height: 1.2;
}
.pipeline-card-details-back-btn[data-v-1028dfc1] {
  height: 26px;
  padding: 0 8px 0 6px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 500;
}
.pipeline-card-details-back-btn[data-v-1028dfc1]:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.pipeline-card-details-breadcrumb-board[data-v-1028dfc1] {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}
.pipeline-card-details-breadcrumb-sep[data-v-1028dfc1] {
  color: #cbd5e1;
  flex-shrink: 0;
}
.pipeline-card-details-breadcrumb-card[data-v-1028dfc1] {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 360px;
  min-width: 0;
}
.pipeline-card-details-breadcrumb-id[data-v-1028dfc1] {
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.pipeline-card-details-main-content[data-v-1028dfc1] > :nth-child(2) {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}


/* ========================================
   RESPONSIVE — Notebooks e monitores compactos
======================================== */

/* Notebooks pequenos e monitores compactos */
@media (max-width: 1280px) {
.pipeline-card-details-main-content[data-v-1028dfc1] {
    --pipeline-card-details-tabs-offset: 52px;
}
.pipeline-card-details-top[data-v-1028dfc1] {
    padding: 10px 20px;
    gap: 20px;
}
.pipeline-card-details-breadcrumb-board[data-v-1028dfc1] {
    max-width: 160px;
}
.pipeline-card-details-breadcrumb-card[data-v-1028dfc1] {
    max-width: 280px;
}
}

/* Notebooks compactos / tablet landscape */
@media (max-width: 1024px) {
.pipeline-card-details[data-v-1028dfc1] {
    border-radius: 0;
}
.pipeline-card-details-top[data-v-1028dfc1] {
    padding: 10px 16px;
    gap: 16px;
}
.pipeline-card-details-main-content[data-v-1028dfc1] {
    --pipeline-card-details-tabs-offset: 48px;
}
.pipeline-card-details-breadcrumb-board[data-v-1028dfc1] {
    max-width: 120px;
}
}

/* Tablet portrait — layout em coluna */
@media (max-width: 768px) {
.pipeline-card-details[data-v-1028dfc1] {
    left: 0;
    border-radius: 0;
}
.pipeline-card-details-main-content[data-v-1028dfc1] {
    --pipeline-card-details-tabs-offset: 0px;
    flex-direction: column;
    position: relative;
}
.pipeline-card-details-top[data-v-1028dfc1] {
    padding: 8px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.pipeline-card-details-back-btn span[data-v-1028dfc1] {
    display: none;
}
.pipeline-card-details-breadcrumb-card[data-v-1028dfc1] {
    max-width: 200px;
}
}

/* Mobile — boas práticas básicas */
@media (max-width: 640px) {
.pipeline-card-details[data-v-1028dfc1] {
    font-size: 14px;
}
.pipeline-card-details-top[data-v-1028dfc1] {
    padding: 8px 12px;
    gap: 6px;
}
}
.pipeline-card-details-ai-btn[data-v-1028dfc1] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #eaeaea;
  border-radius: 9999px;
  background: linear-gradient(135deg, #faf5ff, #f5f3ff);
  color: #6d28d9;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .1s, box-shadow .15s;
}
.pipeline-card-details-ai-btn[data-v-1028dfc1]:hover {
  border-color: #c4b5fd;
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  box-shadow: 0 1px 2px rgba(109, 40, 217, 0.08);
}
.pipeline-card-details-ai-btn[data-v-1028dfc1]:active { transform: scale(0.97);
}
.pipeline-card-details-ai-btn--active[data-v-1028dfc1] {
  border-color: #a78bfa;
  background: #ede9fe;
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.15);
}
