
.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;
}

/* ========================================
   SIDEBAR CONTAINER - LAYOUT PRINCIPAL
======================================== */
.pipeline-card-details-sidebar[data-v-ad90ad6e] {
  width: 280px;
  min-width: 240px;
  max-width: 320px;
  flex-shrink: 0;
  background: #ffffff;
  border-left: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 4px 5px 4px;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #d4d4d4 transparent;
  color: #000000;
  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-ad90ad6e]::-webkit-scrollbar {
  width: 3px;
}
.pipeline-card-details-sidebar[data-v-ad90ad6e]::-webkit-scrollbar-track {
  background: transparent;
}
.pipeline-card-details-sidebar[data-v-ad90ad6e]::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 2px;
}
.pipeline-card-details-sidebar[data-v-ad90ad6e]::-webkit-scrollbar-thumb:hover {
  background: #a3a3a3;
}

/* ========================================
   SEÇÕES
======================================== */
.pipeline-card-details-sidebar-section[data-v-ad90ad6e] {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.pipeline-card-details-section-title[data-v-ad90ad6e] {
  font-size: 13px;
  font-weight: 600;
  color: #262626;
  margin: 0 0 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pipeline-card-details-section-title i[data-v-ad90ad6e],
.pipeline-card-details-section-title .pipeline-card-details-title-icon[data-v-ad90ad6e] {
  font-size: 13px;
  color: #737373;
  width: 14px;
  flex-shrink: 0;
  text-align: center;
}
.pipeline-card-details-field-count[data-v-ad90ad6e] {
  color: #737373;
  font-size: 12px;
  font-weight: 400;
  margin-left: auto;
}
.pipeline-card-details-no-lead-message[data-v-ad90ad6e] {
  font-size: 13px;
  color: #9ca3af;
  font-style: italic;
  margin: 0;
}

/* ========================================
   DIVIDER
======================================== */
/* .pipeline-card-details-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 4px 16px;
  flex-shrink: 0;
} */

/* ========================================
   CONTATO RELACIONADO
======================================== */
.pipeline-card-details-contact-card[data-v-ad90ad6e] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.pipeline-card-details-contact-card:hover .pipeline-card-details-edit-icon[data-v-ad90ad6e] {
  opacity: 1;
}
.pipeline-card-details-contact-avatar[data-v-ad90ad6e] {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0096C7;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
  margin-left: -9px;
}
.pipeline-card-details-contact-info[data-v-ad90ad6e] {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pipeline-card-details-contact-info .pipeline-card-details-input-wrapper[data-v-ad90ad6e] {
  width: 100%;
}
.pipeline-card-details-contact-info .pipeline-card-details-edit-icon[data-v-ad90ad6e] {
  opacity: 0;
  transition: opacity 0.15s;
}
.pipeline-card-details-contact-name[data-v-ad90ad6e] {
  font-size: 12px;
  font-weight: 500;
  color: #171717;
  margin: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pipeline-card-details-contact-details[data-v-ad90ad6e] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pipeline-card-details-contact-item[data-v-ad90ad6e] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}
.pipeline-card-details-contact-item:hover .pipeline-card-details-edit-icon[data-v-ad90ad6e] {
  opacity: 1;
}
.pipeline-card-details-contact-item > i.fi-rr-envelope[data-v-ad90ad6e],
.pipeline-card-details-contact-item > i.fi-rr-phone-call[data-v-ad90ad6e] {
  flex-shrink: 0;
  color: #737373;
  font-size: 13px;
  width: 16px;
  text-align: center;
  margin-top: 3px;
  display: inline-block;
}
.pipeline-card-details-contact-item span[data-v-ad90ad6e] {
  flex: 1;
  font-size: 13px;
  color: #525252;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pipeline-card-details-contact-item .pipeline-card-details-edit-icon[data-v-ad90ad6e] {
  opacity: 0;
  transition: opacity 0.15s;
}

/* ========================================
   CUSTOM FIELDS - COM SCROLL INTERNO
======================================== */
.pipeline-card-details-custom-fields-section[data-v-ad90ad6e] {
  flex-shrink: 0;
}
.pipeline-card-details-custom-fields-wrapper[data-v-ad90ad6e] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pipeline-card-details-custom-fields[data-v-ad90ad6e] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pipeline-card-details-custom-fields--expanded[data-v-ad90ad6e] {
  max-height: 180px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #d4d4d4 transparent;
}
.pipeline-card-details-custom-fields--expanded[data-v-ad90ad6e]::-webkit-scrollbar {
  width: 4px;
}
.pipeline-card-details-custom-fields--expanded[data-v-ad90ad6e]::-webkit-scrollbar-track {
  background: transparent;
}
.pipeline-card-details-custom-fields--expanded[data-v-ad90ad6e]::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 2px;
}
.pipeline-card-details-custom-field-item[data-v-ad90ad6e] {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 0;
  border-bottom: 1px solid #f5f5f5;
}
.pipeline-card-details-custom-field-item[data-v-ad90ad6e]:last-child {
  border-bottom: none;
}
.pipeline-card-details-custom-field-item:hover .pipeline-card-details-edit-icon[data-v-ad90ad6e] {
  opacity: 1;
}
.pipeline-card-details-custom-field-label[data-v-ad90ad6e] {
  font-size: 10px;
  font-weight: 500;
  color: #737373;
}
.pipeline-card-details-custom-field-value[data-v-ad90ad6e] {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pipeline-card-details-field-value-text[data-v-ad90ad6e] {
  flex: 1;
  font-size: 12px;
  color: #171717;
  word-break: break-word;
}
.pipeline-card-details-field-value-placeholder[data-v-ad90ad6e] {
  color: #9ca3af;
  opacity: 0.9;
  font-style: italic;
}
.pipeline-card-details-custom-field-value .pipeline-card-details-edit-icon[data-v-ad90ad6e] {
  opacity: 0;
  transition: opacity 0.15s;
}
.pipeline-card-details-show-more-btn[data-v-ad90ad6e] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  background: none;
  border: none;
  color: #0096C7;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.15s;
}
.pipeline-card-details-show-more-btn[data-v-ad90ad6e]:hover {
  color: #0077B6;
  text-decoration: underline;
}
.pipeline-card-details-show-more-btn i[data-v-ad90ad6e] {
  font-size: 11px;
}

/* ========================================
   TAGS
======================================== */
.pipeline-card-details-tags-section[data-v-ad90ad6e] {
  flex-shrink: 0;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] {
  position: relative;
  min-height: 36px;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .tag-selector,
.pipeline-card-details-tags-container .tag-selector[data-v-ad90ad6e] {
  width: 100%;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .tags-container,
.pipeline-card-details-tags-container .tags-container[data-v-ad90ad6e] {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  min-height: 32px;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .tag-chip,
.pipeline-card-details-tags-container .tag-chip[data-v-ad90ad6e] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid;
  background: white;
  max-width: 150px;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .tag-chip-label,
.pipeline-card-details-tags-container .tag-chip-label[data-v-ad90ad6e] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .tag-chip-remove,
.pipeline-card-details-tags-container .tag-chip-remove[data-v-ad90ad6e] {
  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: 16px;
  line-height: 1;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .tag-chip-remove:hover,
.pipeline-card-details-tags-container .tag-chip-remove[data-v-ad90ad6e]:hover {
  opacity: 1;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .insert-tag-button,
.pipeline-card-details-tags-container .insert-tag-button[data-v-ad90ad6e] {
  background: none;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  color: #0096C7;
  cursor: pointer;
  transition: all 0.15s;
  font-weight: 500;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .insert-tag-button:hover,
.pipeline-card-details-tags-container .insert-tag-button[data-v-ad90ad6e]:hover {
  border-color: #0096C7;
  background: #f0f9ff;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .tag-counter,
.pipeline-card-details-tags-container .tag-counter[data-v-ad90ad6e] {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #f5f5f5;
  font-size: 11px;
  color: #737373;
  cursor: pointer;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .tag-counter:hover,
.pipeline-card-details-tags-container .tag-counter[data-v-ad90ad6e]:hover {
  background: #e5e5e5;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .tag-selector-dropdown,
.pipeline-card-details-tags-container .tag-selector-dropdown[data-v-ad90ad6e] {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  z-index: 1000;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 280px;
  overflow: hidden;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .combo-box,
.pipeline-card-details-tags-container .combo-box[data-v-ad90ad6e] {
  width: 100%;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .combo-box-input,
.pipeline-card-details-tags-container .combo-box-input[data-v-ad90ad6e] {
  font-size: 13px;
  padding: 8px 12px;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
  outline: none;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .combo-box-options,
.pipeline-card-details-tags-container .combo-box-options[data-v-ad90ad6e] {
  max-height: 200px;
  overflow-y: auto;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .combo-box-option,
.pipeline-card-details-tags-container .combo-box-option[data-v-ad90ad6e] {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.15s;
}
.pipeline-card-details-tags-container[data-v-ad90ad6e] .combo-box-option:hover,
.pipeline-card-details-tags-container .combo-box-option[data-v-ad90ad6e]:hover {
  background: #f5f5f5;
}

/* ========================================
   NOTAS
======================================== */
.pipeline-card-details-notes-section[data-v-ad90ad6e] {
  flex-shrink: 0;
}
.pipeline-card-details-notes-container[data-v-ad90ad6e] {
  display: flex;
  flex-direction: column;
}
.pipeline-card-details-notes-container[data-v-ad90ad6e] .notes-component,
.pipeline-card-details-notes-container .notes-component[data-v-ad90ad6e] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pipeline-card-details-notes-container[data-v-ad90ad6e] .notes-list,
.pipeline-card-details-notes-container .notes-list[data-v-ad90ad6e] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pipeline-card-details-notes-container[data-v-ad90ad6e] .note-item,
.pipeline-card-details-notes-container .note-item[data-v-ad90ad6e] {
  padding: 8px 10px;
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
}
.pipeline-card-details-notes-container[data-v-ad90ad6e] .note-content,
.pipeline-card-details-notes-container .note-content[data-v-ad90ad6e] {
  font-size: 13px;
  line-height: 1.4;
  color: #525252;
}
.pipeline-card-details-notes-container[data-v-ad90ad6e] textarea,
.pipeline-card-details-notes-container textarea[data-v-ad90ad6e] {
  min-height: 50px;
  font-size: 13px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  padding: 8px 10px;
  resize: none;
}
.pipeline-card-details-notes-container[data-v-ad90ad6e] textarea:focus,
.pipeline-card-details-notes-container textarea[data-v-ad90ad6e]:focus {
  border-color: #0096C7;
  outline: none;
}

/* ========================================
   FOOTER - ÚLTIMA MODIFICAÇÃO
======================================== */
.pipeline-card-details-footer[data-v-ad90ad6e] {
  margin-top: auto;
  padding: 12px 16px;
  /* background: #fafafa;
  border-top: 1px solid #e5e5e5; */
  flex-shrink: 0;
}
.pipeline-card-details-last-modified[data-v-ad90ad6e] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pipeline-card-details-modifier-avatar[data-v-ad90ad6e] {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0096C7;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 11px;
  flex-shrink: 0;
}
.pipeline-card-details-modified-info[data-v-ad90ad6e] {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.pipeline-card-details-modified-label[data-v-ad90ad6e] {
  font-size: 11px;
  color: #737373;
  font-weight: 500;
}
.pipeline-card-details-modified-value[data-v-ad90ad6e] {
  font-size: 12px;
  color: #525252;
}
.pipeline-card-details-modified-value strong[data-v-ad90ad6e] {
  color: #171717;
  font-weight: 500;
}

/* ========================================
   EMPTY STATE
======================================== */
.pipeline-card-details-empty-state[data-v-ad90ad6e] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: #a3a3a3;
}
.pipeline-card-details-empty-state i[data-v-ad90ad6e] {
  font-size: 14px;
}
.pipeline-card-details-empty-state span[data-v-ad90ad6e] {
  font-size: 12px;
  font-style: italic;
}

/* ========================================
   EDIT CONTROLS
======================================== */
.pipeline-card-details-edit-icon[data-v-ad90ad6e] {
  color: #a3a3a3;
  font-size: 12px;
  cursor: pointer;
  transition: color 0.15s;
  flex-shrink: 0;
  padding: 2px;
}
.pipeline-card-details-edit-icon[data-v-ad90ad6e]:hover {
  color: #0096C7;
}
.pipeline-card-details-input-wrapper[data-v-ad90ad6e] {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.pipeline-card-details-input-wrapper[data-v-ad90ad6e] .input-default-ui-wrapper,
.pipeline-card-details-input-wrapper .input-default-ui-wrapper[data-v-ad90ad6e] {
  flex: 1;
  margin: 0;
  gap: 0;
}
.pipeline-card-details-input-wrapper[data-v-ad90ad6e] .input-default-ui-label,
.pipeline-card-details-input-wrapper .input-default-ui-label[data-v-ad90ad6e] {
  display: none !important;
}
.pipeline-card-details-input-wrapper[data-v-ad90ad6e] .input-default-ui-container,
.pipeline-card-details-input-wrapper .input-default-ui-container[data-v-ad90ad6e] {
  min-height: 32px;
}
.pipeline-card-details-input-wrapper[data-v-ad90ad6e] .input-default-ui-input,
.pipeline-card-details-input-wrapper .input-default-ui-input[data-v-ad90ad6e] {
  font-size: 12px;
}
.pipeline-card-details-input-actions[data-v-ad90ad6e] {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.pipeline-card-details-input-actions .pipeline-card-details-action-icon[data-v-ad90ad6e] {
  font-size: 13px;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  width: 24px;
  height: 24px;
}
.pipeline-card-details-input-actions .pipeline-card-details-action-check[data-v-ad90ad6e] {
  color: #16a34a;
  background: #dcfce7;
}
.pipeline-card-details-input-actions .pipeline-card-details-action-check[data-v-ad90ad6e]:hover {
  background: #bbf7d0;
  color: #15803d;
  transform: scale(1.05);
}
.pipeline-card-details-input-actions .pipeline-card-details-action-cancel[data-v-ad90ad6e] {
  color: #dc2626;
  background: #fee2e2;
}
.pipeline-card-details-input-actions .pipeline-card-details-action-cancel[data-v-ad90ad6e]:hover {
  background: #fecaca;
  color: #b91c1c;
  transform: scale(1.05);
}

/* ========================================
   LOADING
======================================== */
.pipeline-card-details-loading-container[data-v-ad90ad6e] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 10px;
}
.pipeline-card-details-loading-compact[data-v-ad90ad6e] {
  padding: 12px;
}
.pipeline-card-details-spinner[data-v-ad90ad6e] {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e5e5;
  border-top-color: #0096C7;
  border-radius: 50%;
  animation: pipeline-card-details-spin-ad90ad6e 0.7s linear infinite;
}
@keyframes pipeline-card-details-spin-ad90ad6e {
to {
    transform: rotate(360deg);
}
}
.pipeline-card-details-loading-text[data-v-ad90ad6e] {
  font-size: 12px;
  color: #737373;
}

/* ========================================
   RESPONSIVE (regras consolidadas — mantidas
   apenas as definições finais por breakpoint)
======================================== */

/* ========================================
   NOVO VISUAL - ACCORDION LEAD SIDEBAR
======================================== */
.pipeline-card-details-sidebar[data-v-ad90ad6e] {
  width: 320px;
  min-width: 260px;
  max-width: 320px;
  /* margin-top: var(--pipeline-card-details-tabs-offset, 60px); */
  /* height: calc(100% - var(--pipeline-card-details-tabs-offset, 60px)); */
  background: #ffffff;
  border-left: 1px solid #e5e7eb;
  padding: 0;
  overflow: visible;
  position: relative;
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.08);
}

/* Monitores médios — sidebar mais compacta */
@media (max-width: 1440px) {
.pipeline-card-details-sidebar[data-v-ad90ad6e] {
    width: 300px;
    min-width: 260px;
    max-width: 300px;
}
}

/* Notebooks compactos — sidebar escondida para dar espaço ao conteúdo */
@media (max-width: 1100px) {
.pipeline-card-details-sidebar[data-v-ad90ad6e] {
    display: none;
}
}
.pipeline-card-details-sidebar-content[data-v-ad90ad6e] {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d4d4d4 transparent;
}
.pipeline-card-details-sidebar-content[data-v-ad90ad6e]::-webkit-scrollbar {
  width: 3px;
}
.pipeline-card-details-sidebar-content[data-v-ad90ad6e]::-webkit-scrollbar-track {
  background: transparent;
}
.pipeline-card-details-sidebar-content[data-v-ad90ad6e]::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 2px;
}
.pipeline-card-details-section[data-v-ad90ad6e] {
  border-bottom: 1px solid #f3f4f6;
}
.pipeline-card-details-accordion-header[data-v-ad90ad6e] {
  width: 100%;
  border: none;
  background: #ffffff;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.2s;
}
.pipeline-card-details-accordion-header[data-v-ad90ad6e]:hover {
  background: #f9fafb;
}
.pipeline-card-details-accordion-title-group[data-v-ad90ad6e] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pipeline-card-details-accordion-title[data-v-ad90ad6e] {
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1;
}
.pipeline-card-details-accordion-badge[data-v-ad90ad6e] {
  font-size: 10px;
  color: #9ca3af;
  font-weight: 600;
}
.pipeline-card-details-accordion-arrow[data-v-ad90ad6e] {
  font-size: 13px;
  color: #9ca3af;
  transition: transform 0.3s ease;
}
.pipeline-card-details-section.is-expanded .pipeline-card-details-accordion-arrow[data-v-ad90ad6e] {
  transform: rotate(180deg);
}
.pipeline-card-details-header-action[data-v-ad90ad6e] {
  color: black;
  font-size: 14px;
}
.pipeline-card-details-accordion-body[data-v-ad90ad6e] {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.pipeline-card-details-section.is-expanded .pipeline-card-details-accordion-body[data-v-ad90ad6e] {
  max-height: 1200px;
  overflow: visible;
}
.pipeline-card-details-accordion-inner[data-v-ad90ad6e] {
  padding: 6px 12px 14px;
}
.pipeline-card-details-lead-content[data-v-ad90ad6e] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pipeline-card-details-contact-avatar[data-v-ad90ad6e] {
  margin-left: 0;
  width: 28px;
  height: 28px;
  font-size: 10px;
}
.pipeline-card-details-contact-name[data-v-ad90ad6e] {
  font-size: 12px;
  font-weight: 700;
  color: #111827;
}
.pipeline-card-details-contact-details[data-v-ad90ad6e] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pipeline-card-details-info-row[data-v-ad90ad6e] {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pipeline-card-details-info-icon[data-v-ad90ad6e] {
  width: 22px;
  color: #9ca3af;
  margin-top: 3px;
  text-align: center;
}
.pipeline-card-details-info-label[data-v-ad90ad6e] {
  margin: 0;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #9ca3af;
  font-weight: 700;
}
.pipeline-card-details-info-value[data-v-ad90ad6e] {
  margin: 0;
  font-size: 12px;
  color: #374151;
  font-weight: 500;
}
.pipeline-card-details-inline-value[data-v-ad90ad6e] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #374151;
}
.pipeline-card-details-custom-fields-block[data-v-ad90ad6e] {
  border-top: 1px solid #f3f4f6;
  padding-top: 6px;
}
.pipeline-card-details-block-title[data-v-ad90ad6e] {
  font-size: 9px;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 700;
}
.pipeline-card-details-custom-fields-wrapper[data-v-ad90ad6e] {
  margin-top: 6px;
}
.pipeline-card-details-custom-field-item[data-v-ad90ad6e] {
  border: 1px solid #eff6ff;
  background: rgba(239, 246, 255, 0.45);
  border-radius: 6px;
  padding: 5px;
  margin-bottom: 3px;
}
.pipeline-card-details-custom-field-label[data-v-ad90ad6e] {
  font-size: 8px;
  text-transform: uppercase;
  color: #60a5fa;
  font-weight: 700;
}
.pipeline-card-details-field-value-text[data-v-ad90ad6e] {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}
.pipeline-card-details-meta-dates[data-v-ad90ad6e] {
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px solid #f9fafb;
}
.pipeline-card-details-meta-dates p[data-v-ad90ad6e] {
  margin: 0;
  font-size: 9px;
  color: #9ca3af;
  line-height: 1.4;
}
.pipeline-card-details-meta-dates i[data-v-ad90ad6e] {
  margin-right: 4px;
}
.pipeline-card-details-task-filters[data-v-ad90ad6e] {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.pipeline-card-details-task-filter-btn[data-v-ad90ad6e] {
  border: none;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 9px;
  font-weight: 700;
  background: #f3f4f6;
  color: #6b7280;
  cursor: pointer;
}
.pipeline-card-details-task-filter-btn.is-active[data-v-ad90ad6e] {
  background: #dbeafe;
  color: #2563eb;
}
.pipeline-card-details-task-card[data-v-ad90ad6e] {
  /* Camada principal do card (equivalente a bg-white, border, rounded-xl, p-4, shadow-sm, group) */
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  margin-bottom: 6px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease,
    background-color 0.18s ease;
}
.pipeline-card-details-task-card[data-v-ad90ad6e]:hover {
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
  border-color: #d1d5db;
  background-color: #f9fafb;
}
.pipeline-card-details-task-header[data-v-ad90ad6e] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}
.pipeline-card-details-task-title[data-v-ad90ad6e] {
  margin: 0;
  font-size: 0.875rem; /* text-sm */
  font-weight: 700;
  color: #1f2933;
  line-height: 1.2; /* leading-tight */
  padding-right: 2.5rem; /* espaço para ações no canto superior direito */
}
.pipeline-card-details-task-header-actions[data-v-ad90ad6e] {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.pipeline-card-details-task-icon-btn[data-v-ad90ad6e] {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  border: none;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #9ca3af;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.pipeline-card-details-task-icon-btn i[data-v-ad90ad6e] {
  font-size: 0.9rem;
}
.pipeline-card-details-task-icon-btn[data-v-ad90ad6e]:hover {
  color: #111827;
  /* background-color: #f3f4f6;
  transform: scale(1.05); */
}
.pipeline-card-details-task-actions[data-v-ad90ad6e] {
  display: flex;
  gap: 0.5rem;
  color: #9ca3af;
}
.pipeline-card-details-task-meta[data-v-ad90ad6e] {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.4rem;
}
.pipeline-card-details-task-tag[data-v-ad90ad6e] {
  /* Badge de tipo (equivalente a bg-blue-50/50 text-blue-600 font-semibold rounded-md px-2 py-1) */
  display: inline-flex;
  align-items: center;
  border-radius: 0.375rem;
  background-color: rgba(239, 246, 255, 0.85);
  color: #2563eb;
  font-weight: 600;
  padding: 0.1rem 0.55rem;
  font-size: 0.7rem;
}
.pipeline-card-details-task-status-badge[data-v-ad90ad6e] {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.1rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
}
.pipeline-card-details-task-status--pending[data-v-ad90ad6e] {
  background-color: rgba(255, 193, 7, 0.12); /* medium (amarelo) */
  color: #FFC107;
}
.pipeline-card-details-task-status--done[data-v-ad90ad6e] {
  background-color: rgba(76, 175, 80, 0.12); /* low (verde) */
  color: #4CAF50;
}
.pipeline-card-details-task-status--cancelled[data-v-ad90ad6e] {
  background-color: rgba(255, 152, 0, 0.12); /* high (laranja) */
  color: #FF9800;
}
.pipeline-card-details-task-status--expired[data-v-ad90ad6e] {
  background-color: rgba(244, 67, 54, 0.12); /* critical (vermelho) */
  color: #F44336;
}
.pipeline-card-details-task-date[data-v-ad90ad6e] {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.375rem;
  background-color: #fef2f2; /* bg-red-50 */
  color: #ef4444; /* text-red-500 */
  font-weight: 500;
  padding: 0.1rem 0.55rem;
}
.pipeline-card-details-task-date i[data-v-ad90ad6e] {
  font-size: 0.75rem;
}
.pipeline-card-details-task-buttons[data-v-ad90ad6e] {
  display: none; /* substituído por footer com ícones */
}
.pipeline-card-details-btn-task[data-v-ad90ad6e] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: 999px;
  border: none;
  padding: 0.3rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.pipeline-card-details-btn-task-delete[data-v-ad90ad6e] {
  color: #ef4444;
}
.pipeline-card-details-btn-task-delete[data-v-ad90ad6e]:hover {
  color: #b91c1c;
  background-color: #fef2f2;
  transform: scale(1.03);
}
.pipeline-card-details-btn-task-complete[data-v-ad90ad6e] {
  color: #16a34a;
}
.pipeline-card-details-btn-task-complete[data-v-ad90ad6e]:hover {
  color: #15803d;
  background-color: #ecfdf3;
  transform: scale(1.03);
}

/* Footer do card de tarefa: data à esquerda, ações à direita */
.pipeline-card-details-task-footer[data-v-ad90ad6e] {
  margin-top: 0.6rem;
  /* border-top: 1px solid #f9fafb; */
  padding-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.pipeline-card-details-task-footer-date[data-v-ad90ad6e] {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: #6b7280;
}
.pipeline-card-details-task-footer-date i[data-v-ad90ad6e] {
  font-size: 0.8rem;
}
.pipeline-card-details-task-footer-actions[data-v-ad90ad6e] {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.pipeline-card-details-task-footer-icon[data-v-ad90ad6e] {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* background-color: #f9fafb; */
  color: #6b7280;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.pipeline-card-details-task-footer-icon i[data-v-ad90ad6e] {
  font-size: 0.9rem;
}
.pipeline-card-details-task-footer-icon--delete[data-v-ad90ad6e] {
  color: #ef4444;
}
.pipeline-card-details-task-footer-icon--delete[data-v-ad90ad6e]:hover {
  color: #b91c1c;
}
.pipeline-card-details-task-footer-icon--complete[data-v-ad90ad6e] {
  color: #16a34a;
}
.pipeline-card-details-task-footer-icon--complete[data-v-ad90ad6e]:hover {
  color: #15803d;
}
.pipeline-card-details-btn-view-all[data-v-ad90ad6e] {
  width: 100%;
  margin-top: 10px;
  border: 1px dashed #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  color: #3b82f6;
  font-size: 10px;
  font-weight: 700;
  padding: 8px 6px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.pipeline-card-details-section[data-v-ad90ad6e] .tag-selector,
.pipeline-card-details-section .tag-selector[data-v-ad90ad6e] {
  width: 100%;
}
.pipeline-card-details-section[data-v-ad90ad6e] .tags-container,
.pipeline-card-details-section .tags-container[data-v-ad90ad6e] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pipeline-card-details-section[data-v-ad90ad6e] .tag-chip,
.pipeline-card-details-section .tag-chip[data-v-ad90ad6e] {
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 11px;
  border-width: 2px;
}
.pipeline-card-details-notes-container[data-v-ad90ad6e] .note-item,
.pipeline-card-details-notes-container .note-item[data-v-ad90ad6e] {
  background: rgba(254, 252, 232, 0.45);
  border: 1px solid #fef08a;
  border-radius: 8px;
  padding: 10px;
}
.pipeline-card-details-notes-container[data-v-ad90ad6e] .note-content,
.pipeline-card-details-notes-container .note-content[data-v-ad90ad6e] {
  font-style: italic;
}

/* Tablet portrait — sidebar como overlay full-width */
@media (max-width: 768px) {
.pipeline-card-details-sidebar[data-v-ad90ad6e] {
    display: flex;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    border-left: none;
    border-top: 1px solid #e5e5e5;
    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-ad90ad6e] {
    transform: translateX(0);
}
.pipeline-card-details-accordion-title[data-v-ad90ad6e] {
    font-size: 13px;
}
.pipeline-card-details-contact-name[data-v-ad90ad6e] {
    font-size: 12px;
}
.pipeline-card-details-task-title[data-v-ad90ad6e] {
    font-size: 12px;
}
}

/* Mobile — espaçamento reduzido */
@media (max-width: 480px) {
.pipeline-card-details-sidebar-section[data-v-ad90ad6e] {
    padding: 10px 12px;
}
.pipeline-card-details-section-title[data-v-ad90ad6e] {
    font-size: 12px;
}
.pipeline-card-details-contact-avatar[data-v-ad90ad6e] {
    width: 28px;
    height: 28px;
    font-size: 9px;
}
.pipeline-card-details-footer[data-v-ad90ad6e] {
    padding: 10px 12px;
}
}

/* ========================================
   COLLAPSED STATE
======================================== */
.pipeline-card-details-sidebar--collapsed[data-v-ad90ad6e] {
  width: 2.5rem !important;
  min-width: 2.5rem !important;
  max-width: 2.5rem !important;
  padding: 0 !important;
  overflow: visible !important;
  border-left: 1px solid #e5e5e5 !important;
  align-items: center !important;
}
.pipeline-card-details-sidebar--collapsed .pipeline-card-details-sidebar-content[data-v-ad90ad6e] {
  opacity: 0;
  pointer-events: none;
  width: 0;
  overflow: hidden;
  flex-shrink: 0;
}

/* Collapsed: icons strip */
.pipeline-card-details-lead-collapsed-icons[data-v-ad90ad6e] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 2.75rem 0 0.5rem;
  width: 2.5rem;
  flex-shrink: 0;
}
.pipeline-card-details-lead-collapsed-icon[data-v-ad90ad6e] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  color: #64748b;
  cursor: default;
  transition: background-color 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}
.pipeline-card-details-lead-collapsed-icon[data-v-ad90ad6e]:hover {
  background-color: #f1f5f9;
  color: #1e40af;
}
.pipeline-card-details-lead-collapsed-icon i[data-v-ad90ad6e] {
  font-size: 0.875rem;
  line-height: 1;
}

/* ========================================
   TOGGLE BUTTON (Sidebar.vue style)
======================================== */

/* Positioner: carrega o position:absolute para não contaminar o Tooltip wrapper */
.pipeline-card-details-lead-toggle-positioner[data-v-ad90ad6e] {
  position: absolute;
  left: -0.625rem;
  top: 4rem;
  z-index: 40;
}
.pipeline-card-details-lead-toggle-positioner--strip[data-v-ad90ad6e] {
  left: 50%;
  transform: translateX(-50%);
  top: 0.75rem;
}

/* Botão em si: apenas aparência, sem position absolute */
.pipeline-card-details-lead-toggle-btn[data-v-ad90ad6e] {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgb(51 65 85);
  outline: none;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

/* When collapsed, strip visual style only */
.pipeline-card-details-lead-toggle-btn--strip[data-v-ad90ad6e] {
  border-color: #bfdbfe;
  background-color: rgb(239 246 255);
  color: rgb(37 99 235);
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.15);
}
.pipeline-card-details-lead-toggle-btn[data-v-ad90ad6e]:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: rgb(96 165 250);
  background-color: rgb(239 246 255);
  color: rgb(37 99 235);
}
.pipeline-card-details-lead-toggle-btn[data-v-ad90ad6e]:focus {
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.5);
}
.pipeline-card-details-lead-toggle-icon[data-v-ad90ad6e] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* When open (!isCollapsed), rotate 180deg so ChevronLeft points right → "close" */
.pipeline-card-details-lead-toggle-icon--rotated[data-v-ad90ad6e] {
  transform: rotate(180deg);
}
.pipeline-card-details-lead-toggle-btn:hover .pipeline-card-details-lead-toggle-icon[data-v-ad90ad6e] {
  /* no scale to prevent layout shift */
}
.pipeline-card-details-lead-toggle-btn:hover .pipeline-card-details-lead-toggle-icon--rotated[data-v-ad90ad6e] {
  transform: rotate(180deg);
}

/* Transition classes */
.lead-sidebar-toggle-enter-active[data-v-ad90ad6e] {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.lead-sidebar-toggle-enter-from[data-v-ad90ad6e] {
  opacity: 0;
  transform: scale(0.75);
}
.lead-sidebar-toggle-enter-to[data-v-ad90ad6e] {
  opacity: 1;
  transform: scale(1);
}
.lead-sidebar-toggle-leave-active[data-v-ad90ad6e] {
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.lead-sidebar-toggle-leave-from[data-v-ad90ad6e] {
  opacity: 1;
  transform: scale(1);
}
.lead-sidebar-toggle-leave-to[data-v-ad90ad6e] {
  opacity: 0;
  transform: scale(0.75);
}
/* 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-ad90ad6e] .combo-box {
  position: relative;
}
[data-v-ad90ad6e] .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-ad90ad6e] {
  color: #ef4444;
}

.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-54b9de20] {
  width: 100%;
  
  background: #fff;
  border-radius: 8px;
}
.kanban-history-header[data-v-54b9de20] {
  margin-bottom: 24px;
}
.kanban-history-title[data-v-54b9de20] {
  font-size: 16px;
  font-weight: 550;
  color: #111827;
  margin: 0 0 4px 0;
}
.kanban-history-subtitle[data-v-54b9de20] {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}
.kanban-history-table-wrapper[data-v-54b9de20] {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
}
.kanban-history-table[data-v-54b9de20] {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.kanban-history-thead[data-v-54b9de20] {
  background: #F9FAFB;
}
.kanban-history-header-row[data-v-54b9de20] {
  border-bottom: 1px solid #E5E7EB;
}
.kanban-history-th[data-v-54b9de20] {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.kanban-history-tbody[data-v-54b9de20] {
  background: #fff;
}
.kanban-history-row[data-v-54b9de20] {
  border-bottom: 1px solid #F3F4F6;
  transition: background-color 0.2s ease;
}
.kanban-history-row[data-v-54b9de20]:last-child {
  border-bottom: none;
}
.kanban-history-row[data-v-54b9de20]:hover {
  background: #F9FAFB;
}
.kanban-history-td[data-v-54b9de20] {
  padding: 16px;
  vertical-align: middle;
}
.kanban-history-stage-cell[data-v-54b9de20] {
  min-width: 200px;
}
.kanban-history-stage-info[data-v-54b9de20] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.kanban-history-stage-indicator[data-v-54b9de20] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.kanban-history-stage-name[data-v-54b9de20] {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}
.kanban-history-value-cell[data-v-54b9de20] {
  min-width: 120px;
}
.kanban-history-value-amount[data-v-54b9de20] {
  font-size: 14px;
  font-weight: 600;
  color: #059669;
}
.kanban-history-duration-cell[data-v-54b9de20] {
  min-width: 140px;
}
.kanban-history-duration-text[data-v-54b9de20] {
  font-size: 14px;
  color: #6B7280;
}
.kanban-history-user-cell[data-v-54b9de20] {
  min-width: 200px;
}
.kanban-history-user-info[data-v-54b9de20] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.kanban-history-user-avatar[data-v-54b9de20] {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
  color: #1a1d29;
  background-color: #bbd2ef;
  flex-shrink: 0;
  cursor: help;
  transition: transform 0.2s ease;
}
.kanban-history-user-avatar[data-v-54b9de20]:hover {
  transform: scale(1.1);
}
.kanban-history-user-datetime[data-v-54b9de20] {
  display: flex;
  gap: 8px;
  align-items: center;
}
.kanban-history-user-date[data-v-54b9de20] {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
}
.kanban-history-user-time[data-v-54b9de20] {
 font-size: 13px;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
}
.kanban-history-empty[data-v-54b9de20] {
  text-align: center;
  padding: 48px 24px;
  color: #6B7280;
}
.kanban-history-empty-icon[data-v-54b9de20] {
  margin: 0 auto 16px;
  width: 48px;
  height: 48px;
  color: #9CA3AF;
}
.kanban-history-empty-title[data-v-54b9de20] {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  margin: 0 0 8px 0;
}
.kanban-history-empty-description[data-v-54b9de20] {
  font-size: 14px;
  color: #6B7280;
}
@media (max-width: 768px) {
.kanban-history[data-v-54b9de20] {
    padding: 16px;
}
.kanban-history-table[data-v-54b9de20] {
    font-size: 12px;
}
.kanban-history-td[data-v-54b9de20] {
    padding: 12px 8px;
}
.kanban-history-stage-info[data-v-54b9de20] {
    gap: 8px;
}
.kanban-history-user-info[data-v-54b9de20] {
    gap: 8px;
}
.kanban-history-user-avatar[data-v-54b9de20] {
    width: 28px;
    height: 28px;
    font-size: 11px;
}
.kanban-history-user-datetime[data-v-54b9de20] {
    gap: 6px;
}
.kanban-history-user-date[data-v-54b9de20],
  .kanban-history-user-time[data-v-54b9de20] {
    font-size: 12px;
}
.kanban-history-duration-cell[data-v-54b9de20] {
    display: none;
}
.kanban-history-th[data-v-54b9de20]:nth-child(3) {
    display: none;
}
}
@media (max-width: 480px) {
.kanban-history-empty[data-v-54b9de20] {
    padding: 24px 16px;
}
.kanban-history-empty-icon[data-v-54b9de20] {
    width: 32px;
    height: 32px;
}
.kanban-history-stage-cell[data-v-54b9de20],
  .kanban-history-value-cell[data-v-54b9de20],
  .kanban-history-user-cell[data-v-54b9de20] {
    min-width: auto;
}
.kanban-history-user-datetime[data-v-54b9de20] {
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}
.kanban-history-user-date[data-v-54b9de20],
  .kanban-history-user-time[data-v-54b9de20] {
    font-size: 11px;
}
}
.kanban-history-row[data-v-54b9de20] {
  animation: kanban-history-fade-in-54b9de20 0.3s ease-in-out;
}
@keyframes kanban-history-fade-in-54b9de20 {
from {
    opacity: 0;
    transform: translateY(-4px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.kanban-history-stage-indicator[data-v-54b9de20] {
  transition: transform 0.2s ease;
}
.kanban-history-row:hover .kanban-history-stage-indicator[data-v-54b9de20] {
  transform: scale(1.1);
}
.kanban-history-loading[data-v-54b9de20] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  color: #6B7280;
}
.kanban-history-loading-spinner[data-v-54b9de20] {
  width: 24px;
  height: 24px;
  border: 2px solid #E5E7EB;
  border-top: 2px solid #3B82F6;
  border-radius: 50%;
  animation: kanban-history-spin-54b9de20 1s linear infinite;
  margin-bottom: 12px;
}
@keyframes kanban-history-spin-54b9de20 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.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;
}
}

.kanban-card-main-description[data-v-7865f493] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  overflow: visible;
}
.kanban-main-desc-header[data-v-7865f493] {
  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-7865f493] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 0;
}
.kanban-main-desc-icon[data-v-7865f493] {
  color: #475569;
}
.kanban-main-desc-title[data-v-7865f493] {
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  color: #0f172a;
}
.kanban-main-desc-loading[data-v-7865f493] {
  padding: 12px 0;
  color: #9ca3af;
  font-size: 13px;
}
.kanban-main-desc-edit-btn[data-v-7865f493] {
  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-edit-btn[data-v-7865f493]:hover {
  background: #d1d5db;
  color: #111827;
}
.kanban-main-desc-viewer[data-v-7865f493] {
  border-radius: 6px;
  transition: background 0.15s;
}
.kanban-main-desc-viewer--editable[data-v-7865f493] {
  cursor: text;
}
.kanban-main-desc-content[data-v-7865f493] {
  font-size: 13px;
  line-height: 1.65;
  color: #1f2937;
  padding: 0;
  min-height: 0 !important;
}
.kanban-main-desc-content[data-v-7865f493] p {
  margin: 0.35em 0;
}
.kanban-main-desc-content[data-v-7865f493] p:first-child {
  margin-top: 0;
}
.kanban-main-desc-content[data-v-7865f493] p:last-child {
  margin-bottom: 0;
}
.kanban-main-desc-content[data-v-7865f493] h1,
.kanban-main-desc-content[data-v-7865f493] h2,
.kanban-main-desc-content[data-v-7865f493] h3 {
  font-weight: 700;
  line-height: 1.3;
  margin: 0.6em 0 0.3em;
  color: #0f172a;
}
.kanban-main-desc-content[data-v-7865f493] h1 { font-size: 1.4em;
}
.kanban-main-desc-content[data-v-7865f493] h2 { font-size: 1.2em;
}
.kanban-main-desc-content[data-v-7865f493] h3 { font-size: 1.05em;
}
.kanban-main-desc-content[data-v-7865f493] ul,
.kanban-main-desc-content[data-v-7865f493] ol {
  padding-left: 1.5em;
  margin: 0.5em 0;
}
.kanban-main-desc-content[data-v-7865f493] ul { list-style-type: disc;
}
.kanban-main-desc-content[data-v-7865f493] ol { list-style-type: decimal;
}
.kanban-main-desc-content[data-v-7865f493] li {
  margin: 0.2em 0;
}
.kanban-main-desc-content[data-v-7865f493] .kanban-media-tombstone {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #f1f5f9;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.kanban-main-desc-wrapper[data-v-7865f493] {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.kanban-main-desc-wrapper--collapsed[data-v-7865f493] {
  max-height: 180px;
  overflow: hidden;
}
.kanban-main-desc-fade[data-v-7865f493] {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff 85%);
  box-shadow: inset 0 -14px 18px -18px rgba(15, 23, 42, 0.28);
  pointer-events: none;
}
.kanban-main-desc-toggle-btn[data-v-7865f493] {
  width: 100%;
  margin-top: 8px;
  height: 36px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #ffffff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.kanban-main-desc-toggle-btn[data-v-7865f493]:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}
.kanban-main-desc-empty[data-v-7865f493] {
  min-height: 60px;
  padding: 0.75rem 1rem;
  background: #f1f5f9;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #9ca3af;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.kanban-main-desc-viewer--editable .kanban-main-desc-empty[data-v-7865f493]:hover {
  background: #e2e8f0;
}
.kanban-main-desc-editing-wrap[data-v-7865f493] {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.kanban-main-desc-edit-actions[data-v-7865f493] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px 0 0;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
}
.kanban-main-desc-editor[data-v-7865f493] {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.kanban-main-desc-editor[data-v-7865f493] .ProseMirror {
  min-height: 110px !important;
  max-height: 280px;
}
.kanban-main-desc-content[data-v-7865f493] {
  min-height: 0 !important;
}
.kanban-card-description-add-toolbar[data-v-7865f493] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-top: 1px solid #f0f0f0;
  background: #fafbfc;
}
.kanban-card-description-add-toolbar-left[data-v-7865f493] {
  display: flex;
  align-items: center;
  gap: 4px;
}
.kanban-card-description-add-toolbar-right[data-v-7865f493] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.kanban-card-description-toolbar-btn[data-v-7865f493] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.15s ease;
}
.kanban-card-description-toolbar-btn[data-v-7865f493]:hover {
  background: #e5e7eb;
  color: #374151;
}
.kanban-main-desc-editor[data-v-7865f493] .text-area-default-ui-wrapper {
  margin: 0;
}
.kanban-main-desc-editor[data-v-7865f493] .text-area-default-ui-container {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.kanban-main-desc-editor[data-v-7865f493] .text-area-default-ui-container--rich {
  min-height: 200px !important;
  max-height: 520px !important;
}
.kanban-main-desc-editor[data-v-7865f493] .text-area-default-ui-container--rich .tiptap-toolbar {
  max-height: 44px !important;
  overflow: visible !important;
  padding: 4px 8px !important;
  border-bottom: 1px solid #f0f2f5 !important;
}
.kanban-main-desc-editor[data-v-7865f493] .text-area-default-ui-container--rich .ProseMirror {
  min-height: 250px !important;
  max-height: 500px !important;
  padding: 12px 14px !important;
  overflow-y: auto;
}
.kanban-main-desc-editor[data-v-7865f493] .tiptap-editor-wrap {
  max-height: none !important;
  overflow-y: hidden !important;
}
.kanban-main-desc-editor[data-v-7865f493] .text-area-default-ui-container--rich .ProseMirror p.is-editor-empty:first-child::before,
.kanban-main-desc-editor[data-v-7865f493] .text-area-default-ui-container--rich .ProseMirror p.is-empty:first-child::before {
  pointer-events: none;
  float: left;
  height: 0;
}
.desc-fade-slide-enter-active[data-v-7865f493],
.desc-fade-slide-leave-active[data-v-7865f493] {
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.desc-fade-slide-enter-from[data-v-7865f493],
.desc-fade-slide-leave-to[data-v-7865f493] {
  opacity: 0;
  transform: translateY(6px) scale(0.995);
}

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

/* ── "Adicionar" dropdown button ───────────────────────────── */
.kanban-main-desc-add-wrap[data-v-7865f493] {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.kanban-main-desc-add-btn[data-v-7865f493] {
  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-7865f493]: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-7865f493] {
  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-7865f493 0.14s ease;
  transform-origin: top right;
}
@keyframes kanban-desc-menu-in-7865f493 {
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-7865f493] {
  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-7865f493] {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.01em;
}
.kanban-main-desc-add-menu-close[data-v-7865f493] {
  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-7865f493]:hover {
  background: #f1f5f9;
  color: #374151;
}
.kanban-main-desc-add-menu-body[data-v-7865f493] {
  padding: 6px;
}
.kanban-main-desc-add-menu-item[data-v-7865f493] {
  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-7865f493]:hover {
  background-color: #f8fafc;
}
.kanban-main-desc-add-menu-item[data-v-7865f493]:active {
  background-color: #f1f5f9;
}
.kanban-main-desc-add-menu-icon[data-v-7865f493] {
  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-7865f493] {
  background: #e2e8f0;
}
.kanban-main-desc-add-menu-text[data-v-7865f493] {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.kanban-main-desc-add-menu-item-title[data-v-7865f493] {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
  white-space: nowrap;
}
.kanban-main-desc-add-menu-item-desc[data-v-7865f493] {
  font-size: 11px;
  font-weight: 400;
  color: #9ca3af;
  line-height: 1.3;
  white-space: normal;
}
.kanban-main-desc-responsible-wrap[data-v-7865f493] {
  position: fixed;
  z-index: 10001;
  padding: 0;
}
.kanban-main-desc-date-wrap[data-v-7865f493] {
  position: fixed;
  z-index: 10001;
  padding: 0;
}
.kanban-main-desc-transfer-error[data-v-7865f493] {
  margin: 8px 4px 2px;
  font-size: 12px;
  color: #dc2626;
}
.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;
  padding: 48px;
  gap: 12px;
  color: #9ca3af;
}
.kanban-card-tasks-empty-icon {
  opacity: 0.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 — same pattern as KanbanCardTimeline */
.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;
}

/* ========================================
   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;
}
}

.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;
}
}

/* ─── Section wrapper ──────────────────────────────────────────────────── */
.kanban-card-checklists-section[data-v-48e5c4bc] {
  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-48e5c4bc]:hover {
    scrollbar-width: thin;
}
.kanban-card-checklists-section[data-v-48e5c4bc]::-webkit-scrollbar {
  width: 4px;
}
.kanban-card-checklists-section[data-v-48e5c4bc]::-webkit-scrollbar-track {
  background: transparent;
}
.kanban-card-checklists-section[data-v-48e5c4bc]::-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-48e5c4bc]:hover::-webkit-scrollbar-thumb {
  background: #d4d4d4;
}

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

/* ─── Header ───────────────────────────────────────────────────────────── */
.checklist-header[data-v-48e5c4bc] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.checklist-header-left[data-v-48e5c4bc] {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.checklist-header-icon[data-v-48e5c4bc] {
  color: #4b5563;
  flex-shrink: 0;
}
.checklist-title[data-v-48e5c4bc] {
  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-48e5c4bc] {
  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-48e5c4bc] {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.checklist-percentage[data-v-48e5c4bc] {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
}
.checklist-delete-btn[data-v-48e5c4bc] {
  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-48e5c4bc] {
  opacity: 1;
}
.checklist-delete-btn[data-v-48e5c4bc]:hover {
  color: #dc2626;
  background: #fef2f2;
}

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

/* ─── Items list ───────────────────────────────────────────────────────── */
.checklist-items[data-v-48e5c4bc] {
  display: flex;
  flex-direction: column;
}
.checklist-item[data-v-48e5c4bc] {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.4rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.checklist-item[data-v-48e5c4bc]:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.checklist-item-text[data-v-48e5c4bc] {
  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-48e5c4bc] {
  text-decoration: line-through;
  color: #9ca3af;
}
.checklist-item-edit-input[data-v-48e5c4bc] {
  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-48e5c4bc] {
  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-48e5c4bc] {
  opacity: 1;
}
.checklist-item-delete[data-v-48e5c4bc]:hover {
  color: #dc2626;
}

/* ─── New item input ───────────────────────────────────────────────────── */
.checklist-new-item-wrap[data-v-48e5c4bc] {
  margin-top: 0.25rem;
}
.checklist-new-item-input[data-v-48e5c4bc] {
  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-48e5c4bc]:focus {
  border-bottom-color: #3b82f6;
}
.checklist-new-item-input[data-v-48e5c4bc]::-moz-placeholder {
  color: #9ca3af;
}
.checklist-new-item-input[data-v-48e5c4bc]::placeholder {
  color: #9ca3af;
}
.pipeline-card-details-content-area[data-v-47ea0bb0] {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: white;
  overflow: hidden;
}
.pipeline-card-details-tabs[data-v-47ea0bb0] {
  display: flex;
  gap: 4px;
  padding: 16px 24px 0;
  border-bottom: 1px solid #e5e7eb;
  background: white;
  flex-shrink: 0;
}
.pipeline-card-details-tab-tooltip[data-v-47ea0bb0] {
  display: flex;
  align-items: stretch;
}
.pipeline-card-details-tab-tooltip[data-v-47ea0bb0] .tooltip-default-ui-wrapper {
  display: flex;
  align-items: stretch;
}
.pipeline-card-details-tab[data-v-47ea0bb0] {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  background: transparent;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  bottom: -1px;
}
.pipeline-card-details-tab[data-v-47ea0bb0]:hover {
  color: #374151;
  background: #f9fafb;
  border-radius: 6px 6px 0 0;
}
.pipeline-card-details-tab.pipeline-card-details-active[data-v-47ea0bb0] {
  color: #010101;
  border-bottom-color: #0001fa;
  background: transparent;
}
.pipeline-card-details-tab-container[data-v-47ea0bb0] {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #f0f7fb;
}
.pipeline-card-details-tab-content[data-v-47ea0bb0] {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  /* margin: 16px; */
  background: white;
  /* border-radius: 8px; */
}
.pipeline-card-details-icon[data-v-47ea0bb0] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pipeline-card-details-icon svg[data-v-47ea0bb0] {
  background: transparent !important;
  display: block;
}

/* Notebooks pequenos — tabs mais compactas */
@media (max-width: 1280px) {
.pipeline-card-details-tabs[data-v-47ea0bb0] {
    padding: 12px 16px 0;
    gap: 2px;
}
.pipeline-card-details-tab[data-v-47ea0bb0] {
    padding: 8px 12px;
    font-size: 13px;
}
}

/* Notebooks compactos — tabs com scroll horizontal */
@media (max-width: 1024px) {
.pipeline-card-details-tabs[data-v-47ea0bb0] {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.pipeline-card-details-tabs[data-v-47ea0bb0]::-webkit-scrollbar {
    display: none;
}
.pipeline-card-details-tab[data-v-47ea0bb0] {
    white-space: nowrap;
    flex-shrink: 0;
}
}

/* Tablet portrait */
@media (max-width: 768px) {
.pipeline-card-details-tabs[data-v-47ea0bb0] {
    padding: 10px 12px 0;
}
.pipeline-card-details-tab[data-v-47ea0bb0] {
    padding: 8px 10px;
    font-size: 12px;
}
.pipeline-card-details-tab-content[data-v-47ea0bb0] {
    padding: 12px;
}
}

/* Mobile — espaçamento mínimo */
@media (max-width: 640px) {
.pipeline-card-details-tab[data-v-47ea0bb0] {
    padding: 6px 8px;
    gap: 4px;
}
.pipeline-card-details-tab-content[data-v-47ea0bb0] {
    padding: 10px;
}
}

/* ========================================
   FIELD INACTIVE STATE
======================================== */
.pipeline-card-details-field-inactive[data-v-47ea0bb0] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.field-inactive-text[data-v-47ea0bb0] {
  font-size: 14px;
  color: #9ca3af;
  font-style: italic;
  text-align: center;
  margin: 0;
}

/* ========================================
   DESCRIPTION WRAPPER & ACTIONS
======================================== */
.pipeline-card-description-wrapper[data-v-47ea0bb0] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pipeline-card-description-actions[data-v-47ea0bb0] {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  padding-top: 12px;
}
.pipeline-card-details-empty-message[data-v-47ea0bb0] {
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
  padding: 24px;
  margin: 0;
  width: 100%;
  max-width: 86%;
}
/*
 * When the overview tab is active the tab-content div gets BOTH classes.
 * We override the default scrolling behaviour so each column handles
 * its own scroll, giving the comments panel an independent scroll region.
 */
.pipeline-card-details-tab-content.kanban-card-overview[data-v-47ea0bb0] {
  overflow: hidden;
  padding: 0;
  margin: 0;
  background: transparent;
}
.kanban-card-overview[data-v-47ea0bb0] {
  display: flex;
  height: 100%;
  gap: 0;
  max-width: 100%;
}

/* ─── Left column: Description ───────────────────────────────────────────── */
.kanban-card-overview-left[data-v-47ea0bb0] {
  flex: 1;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-y: auto;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 0;
  scrollbar-width: thin;
  scrollbar-color: #d4d4d4 transparent;
}
.kanban-card-overview-left[data-v-47ea0bb0]::-webkit-scrollbar {
  width: 5px;
}
.kanban-card-overview-left[data-v-47ea0bb0]::-webkit-scrollbar-track {
  background: transparent;
}
.kanban-card-overview-left[data-v-47ea0bb0]::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 3px;
}
.kanban-card-overview-left-inner[data-v-47ea0bb0] {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
}
.kanban-card-overview-card-title[data-v-47ea0bb0] {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.5625rem);
  line-height: 1.15;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
  word-break: break-word;
  white-space: normal;
}


/* ─── Right column: Comments ─────────────────────────────────────────────── */
.kanban-card-overview-right[data-v-47ea0bb0] {
  width: 390px;
  min-width: 280px;
  max-width: 420px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #fafbfc;
  border-left: 1px solid #e5e7eb;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #d4d4d4 transparent;
}

/* Header of the comments panel — clean, no background/border */
.kanban-card-overview-right[data-v-47ea0bb0] .kanban-overview-comments-title {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  position: static;
  top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px 8px;
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
}
.kanban-card-overview-right[data-v-47ea0bb0] .kanban-overview-comments-title svg {
  color: #6B7280;
}
.kanban-card-overview-right[data-v-47ea0bb0] .kanban-overview-comments-sticky {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #fafbfc;
  margin: -12px -16px 8px;
  padding: 12px 16px 8px;
  border-bottom: 1px solid #eef2f7;
}

/* The KanbanCardDescriptions wrapper inside the right column is managed in the section below */

/* List area — no longer its own scroll region; the right column scrolls */
.kanban-card-overview-right[data-v-47ea0bb0] .kanban-card-description-list-area {
  flex: 1;
  min-height: 0;
  padding: 12px 16px;
}
.kanban-card-overview-right[data-v-47ea0bb0]::-webkit-scrollbar {
  width: 5px;
}
.kanban-card-overview-right[data-v-47ea0bb0]::-webkit-scrollbar-track {
  background: transparent;
}
.kanban-card-overview-right[data-v-47ea0bb0]::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 3px;
}

/* Add comment form at top of scrollable area */
.kanban-card-overview-right[data-v-47ea0bb0] .kanban-card-description-add-section {
  border-bottom: none;
  padding-bottom: 12px;
  margin-bottom: 0;
}

/* .kanban-card-overview-right :deep(.comment-item) {
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
} */

/* Hide the redundant "Todas as descrições" title inside the comments component */
.kanban-card-overview-right[data-v-47ea0bb0] .kanban-card-description-title {
  display: none;
}

/* ─── Card meta (created_at, etc.) ──────────────────────────────────────── */
.kanban-card-overview-meta[data-v-47ea0bb0] {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9ca3af;
  font-size: 12px;
  margin-bottom: -4px;
}
.kanban-card-overview-meta-icon[data-v-47ea0bb0] {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ─── Attachments section ────────────────────────────────────────────────── */
.kanban-card-overview-attachments[data-v-47ea0bb0] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-width: 0;
  margin-top: 8px;
}
.kanban-card-overview-attachments-header[data-v-47ea0bb0] {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  justify-content: space-between;
}
.kanban-card-overview-attachments-header-left[data-v-47ea0bb0] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.kanban-card-overview-attachments-title[data-v-47ea0bb0] {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
.kanban-overview-attachments-subtitle[data-v-47ea0bb0] {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  color: #0f172a;
  margin-top: 8px;
}
.btn-gray[data-v-47ea0bb0] {
  border: none;
  background: #e5e7eb;
  color: #374151;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.3;
  transition: background-color 0.2s ease;
}
.btn-gray[data-v-47ea0bb0]:hover {
  background: #d1d5db;
}
.kanban-overview-attachments-list[data-v-47ea0bb0] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kanban-overview-attachments-empty[data-v-47ea0bb0] {
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  background: #f1f5f9;
  color: #6b7280;
  font-size: 0.9rem;
}
.attachment-item[data-v-47ea0bb0] {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.3rem 0.35rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}
.attachment-item[data-v-47ea0bb0]:hover {
  background: #f8fafc;
}
.attachment-thumbnail[data-v-47ea0bb0] {
  width: 86px;
  height: 58px;
  border-radius: 8px;
  flex-shrink: 0;
  background: #e2e8f0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.attachment-thumbnail img[data-v-47ea0bb0] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.attachment-details[data-v-47ea0bb0] {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.attachment-name[data-v-47ea0bb0] {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.attachment-date[data-v-47ea0bb0] {
  font-size: 0.8rem;
  color: #64748b;
}
.attachment-actions[data-v-47ea0bb0] {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.attachment-actions-menu-wrap[data-v-47ea0bb0] {
  position: relative;
}
.attachment-options-menu[data-v-47ea0bb0] {
  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 8px 20px rgba(15, 23, 42, 0.1);
  padding: 0 0;
}
.attachment-options-item[data-v-47ea0bb0] {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 8px 12px;
  font-size: 12px;
  color: #1f2937;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.attachment-options-item-icon[data-v-47ea0bb0] {
  font-size: 14px;
  width: 14px;
  min-width: 14px;
  line-height: 1;
}
.attachment-options-item[data-v-47ea0bb0]:hover {
  background: #f8fafc;
  border-radius: 8px;
}
.attachment-options-item--danger[data-v-47ea0bb0] {
  color: #dc2626;
}
.attachment-options-item--danger[data-v-47ea0bb0]:hover {
  background: #fef2f2;
}
.btn-icon[data-v-47ea0bb0] {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  transition: background-color 0.2s ease;
}
.btn-icon[data-v-47ea0bb0]:hover {
  background: #f1f5f9;
}
.attachment-thumbnail--image[data-v-47ea0bb0] {
  background: #e2e8f0;
}
.attachment-thumbnail--pdf[data-v-47ea0bb0] {
  background: #fee2e2;
  color: #b91c1c;
}
.attachment-thumbnail--excel[data-v-47ea0bb0] {
  background: #dcfce7;
  color: #166534;
}
.attachment-thumbnail--doc[data-v-47ea0bb0] {
  background: #dbeafe;
  color: #1d4ed8;
}
.attachment-thumbnail--file[data-v-47ea0bb0] {
  background: #e2e8f0;
  color: #334155;
}

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

/* ─── Fix description wrapper overflow (right column / comments) ─────────── */
.kanban-card-overview-right[data-v-47ea0bb0] .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-47ea0bb0] .kanban-card-description-add-form,
.kanban-card-overview-right[data-v-47ea0bb0] .comment-item__inline-reply-form {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.kanban-card-overview-right[data-v-47ea0bb0] .kanban-card-description-add-toolbar,
.kanban-card-overview-right[data-v-47ea0bb0] .comment-item__inline-reply-toolbar {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
.kanban-card-overview-right[data-v-47ea0bb0] .kanban-card-description-add-toolbar-right,
.kanban-card-overview-right[data-v-47ea0bb0] .comment-item__inline-reply-toolbar-right {
  min-width: 0;
}
.pipeline-card-details-tabs[data-v-47ea0bb0] .tooltip-default-ui-wrapper {
  display: flex;
  align-items: stretch;
  max-width: 100%;
}

/* Prevent the editor from overflowing the right column (Tiptap ProseMirror) */
.kanban-card-overview-right[data-v-47ea0bb0] .ProseMirror {
  overflow-x: hidden;
  word-break: break-word;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */

/* Monitores médios — coluna de comentários mais estreita */
@media (max-width: 1400px) and (min-width: 1025px) {
.kanban-card-overview-right[data-v-47ea0bb0] {
    width: 360px;
    min-width: 300px;
    max-width: 380px;
}
}

/* Notebooks pequenos — coluna de comentários compacta */
@media (max-width: 1280px) and (min-width: 1025px) {
.kanban-card-overview-right[data-v-47ea0bb0] {
    width: 320px;
    min-width: 280px;
    max-width: 340px;
}
.kanban-card-overview-left[data-v-47ea0bb0] {
    padding: 14px 16px;
}
}

/* Notebooks compactos / tablet landscape — colapsa para coluna */
@media (max-width: 1024px) {
.pipeline-card-details-tab-content.kanban-card-overview[data-v-47ea0bb0] {
    overflow-y: auto;
}
.kanban-card-overview[data-v-47ea0bb0] {
    flex-direction: column;
    height: auto;
}
.kanban-card-overview-left[data-v-47ea0bb0] {
    overflow-y: visible;
    overflow-x: hidden;
    padding-bottom: 0;
    align-items: stretch;
}
.kanban-card-overview-left-inner[data-v-47ea0bb0] {
    max-width: 100%;
}
.kanban-card-overview-right[data-v-47ea0bb0] {
    width: 100%;
    min-width: 0;
    max-width: none;
    border-left: none;
    border-top: 1px solid #e5e7eb;
    height: 480px;
}
}

/* Tablet portrait */
@media (max-width: 768px) {
.kanban-card-overview-left[data-v-47ea0bb0] {
    padding: 12px;
}
.kanban-card-overview-left-inner[data-v-47ea0bb0] {
    gap: 10px;
}
.kanban-card-overview-meta[data-v-47ea0bb0] {
    font-size: 11px;
}
.kanban-card-overview-right[data-v-47ea0bb0] {
    height: 400px;
}
.attachment-thumbnail[data-v-47ea0bb0] {
    width: 72px;
    height: 50px;
}
.attachment-name[data-v-47ea0bb0] {
    font-size: 0.86rem;
}
.attachment-date[data-v-47ea0bb0] {
    font-size: 0.75rem;
}
}

/* Mobile — empilhamento total */
@media (max-width: 640px) {
.kanban-card-overview-left[data-v-47ea0bb0] {
    padding: 10px;
}
.kanban-card-overview-right[data-v-47ea0bb0] {
    height: 360px;
}
.attachment-thumbnail[data-v-47ea0bb0] {
    width: 60px;
    height: 42px;
}
}

.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;
}
}
.pipeline-card-info-sidebar[data-v-97d7e6d9] {
  width: 360px;
  min-width: 280px;
  max-width: 360px;
  font-size: 12px;
  background-color: #ffffff;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  overflow: visible;
  flex-shrink: 0;
  position: relative;
  z-index: 0;
  color: #000000;
  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-97d7e6d9] {
  width: 52px;
  min-width: 52px;
  max-width: 52px;
}
.pipeline-card-info-collapsed-actions[data-v-97d7e6d9] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px;
}
.pipeline-card-info-collapsed-btn[data-v-97d7e6d9] {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #9ca3af;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.pipeline-card-info-collapsed-btn[data-v-97d7e6d9]:hover {
  background-color: #f3f4f6;
  color: #3b82f6;
}
.pipeline-card-info-collapsed-btn[data-v-97d7e6d9]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.pipeline-card-info-sidebar-scrollable[data-v-97d7e6d9] {
  flex: 1;
  overflow-y: auto;
  min-width: 0;
}
.pipeline-card-info-sidebar-scrollable[data-v-97d7e6d9]::-webkit-scrollbar {
  width: 4px;
}
.pipeline-card-info-sidebar-scrollable[data-v-97d7e6d9]::-webkit-scrollbar-track {
  background: transparent;
}
.pipeline-card-info-sidebar-scrollable[data-v-97d7e6d9]::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 10px;
}
.pipeline-card-info-sidebar-scrollable[data-v-97d7e6d9]::-webkit-scrollbar-thumb:hover {
  background: #cbd5e1;
}
.pipeline-card-info-flex-between[data-v-97d7e6d9] {
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 12px;
}
.pipeline-card-info-flex-center[data-v-97d7e6d9] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pipeline-card-info-size-18[data-v-97d7e6d9] { font-size: 18px;
}
.pipeline-card-info-section-border[data-v-97d7e6d9] {
  border-bottom: 1px solid #f3f4f6;
}
.pipeline-card-info-accordion-header[data-v-97d7e6d9] {
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.pipeline-card-info-history-header[data-v-97d7e6d9] {
  padding: 0;
}
.pipeline-card-info-accordion-header[data-v-97d7e6d9]:hover {
  background-color: #f9fafb;
}
.pipeline-card-info-accordion-title[data-v-97d7e6d9] {
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
}
.pipeline-card-info-accordion-content[data-v-97d7e6d9] {
  padding: 0 12px 10px;
  position: relative;
  z-index: 1;
}
.pipeline-card-info-history-content[data-v-97d7e6d9] {
  padding: 0;
}
.pipeline-card-info-accordion-content.is-hidden[data-v-97d7e6d9] {
  display: none;
}
.pipeline-card-info-card-title-wrap[data-v-97d7e6d9] {
  margin-bottom: 0.75rem;
}
.pipeline-card-info-card-title[data-v-97d7e6d9] {
  font-size: 16px;
  font-weight: 700;
  /* text-transform: uppercase; */
  margin: 0;
  line-height: 1.25;
  color: #1f2937;
}
.pipeline-card-info-icon-edit[data-v-97d7e6d9] {
  color: #93c5fd;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.pipeline-card-info-card-title-wrap:hover .pipeline-card-info-icon-edit[data-v-97d7e6d9] {
  color: #3b82f6;
  opacity: 1;
}
.pipeline-card-info-inline-edit-wrap[data-v-97d7e6d9] {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.pipeline-card-info-inline-input[data-v-97d7e6d9] {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 12px;
  color: #1f2937;
  background: #fff;
}
.pipeline-card-info-inline-actions[data-v-97d7e6d9] {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pipeline-card-info-inline-btn[data-v-97d7e6d9] {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  cursor: pointer;
}
.pipeline-card-info-inline-btn-save[data-v-97d7e6d9] {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}
.pipeline-card-info-inline-icon-btn[data-v-97d7e6d9] {
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.pipeline-card-info-transfer-popover[data-v-97d7e6d9] {
  position: fixed;
  z-index: 99999;
  width: 240px;
  border-radius: 8px;
  padding: 8px;
}
.pipeline-card-info-transfer-error[data-v-97d7e6d9] {
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 11px;
  color: #dc2626;
}
.pipeline-card-info-info-details[data-v-97d7e6d9] {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pipeline-card-info-info-text[data-v-97d7e6d9] {
  font-size: 12px;
  margin: 0;
}
.pipeline-card-info-text-muted[data-v-97d7e6d9] {
  color: #6b7280;
}
.pipeline-card-info-text-light[data-v-97d7e6d9] {
  color: #9ca3af;
}
.pipeline-card-info-info-strong[data-v-97d7e6d9] {
  font-weight: 600;
  color: #111827;
}
.pipeline-card-info-name-column[data-v-97d7e6d9] {
    font-weight: 600;
    color: #111827;
}
.pipeline-card-info-quick-actions[data-v-97d7e6d9] {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f3f4f6;
  position: relative;
}
.pipeline-card-info-action-btn[data-v-97d7e6d9] {
  padding: 6px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #000000;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.pipeline-card-info-action-btn[data-v-97d7e6d9]:hover {
  background-color: #f0f2f5;
  color: #000000;
}
.pipeline-card-info-action-btn[data-v-97d7e6d9]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pipeline-card-info-btn-options[data-v-97d7e6d9] {
  margin-left: auto;
  color: #000000;
  background: transparent;
}
.pipeline-card-info-btn-options[data-v-97d7e6d9]:hover {
  background-color: #f0f2f5;
}

/* Conversation dropdown menu */
.pipeline-card-info-conversation-wrap[data-v-97d7e6d9] {
  position: relative;
}
.pipeline-card-info-conversation-menu[data-v-97d7e6d9] {
  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 rgba(15, 23, 42, 0.10);
  padding: 4px 0;
  overflow: hidden;
}

/* Options dropdown menu */
.pipeline-card-info-options-wrap[data-v-97d7e6d9] {
  margin-left: auto;
  position: relative;
}
.pipeline-card-info-options-menu[data-v-97d7e6d9] {
  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 rgba(15, 23, 42, 0.10);
  padding: 0 0;
  overflow: hidden;
}
.pipeline-card-info-options-item[data-v-97d7e6d9] {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #000000;
  text-align: left;
  transition: background-color 0.15s ease;
}
.pipeline-card-info-options-item[data-v-97d7e6d9]:hover {
  background-color: #f9fafb;
}
.pipeline-card-info-options-item--danger[data-v-97d7e6d9] {
  color: #f60f0f;
}
.pipeline-card-info-options-item--danger[data-v-97d7e6d9]:hover {
  background-color: #fff5f5;
}
.pipeline-card-info-owner-section[data-v-97d7e6d9],
.pipeline-card-info-value-section[data-v-97d7e6d9],
.pipeline-card-info-history-section[data-v-97d7e6d9] {
  padding: 10px 12px;
}

/* Date section */
.pipeline-card-info-dates-section[data-v-97d7e6d9] {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pipeline-card-info-date-close-header[data-v-97d7e6d9] {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed #f0f0f0;
}
.pipeline-card-info-date-edit-wrap[data-v-97d7e6d9] {
  margin-top: 4px;
}
.pipeline-card-info-date-picker-wrap[data-v-97d7e6d9] {
  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-97d7e6d9] {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.pipeline-card-info-section-label[data-v-97d7e6d9] {
  font-size: 10px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.pipeline-card-info-owner-wrap[data-v-97d7e6d9] {
  gap: 0.75rem;
}
.pipeline-card-info-avatar[data-v-97d7e6d9] {
  width: 30px;
  height: 30px;
  background-color: #151f38;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 0 0 2px #e0e7ff;
}
.pipeline-card-info-owner-name[data-v-97d7e6d9] {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  color: #000000;
}
.pipeline-card-info-owner-role[data-v-97d7e6d9] {
  font-size: 10px;
  color: #9ca3af;
  margin: 0;
}
.pipeline-card-info-icon-edit-muted[data-v-97d7e6d9] {
  color: #cbd5e1;
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.pipeline-card-info-group:hover .pipeline-card-info-icon-edit-muted[data-v-97d7e6d9] {
  color: #3b82f6;
  opacity: 1;
}
.pipeline-card-info-value-header[data-v-97d7e6d9] {
  margin-bottom: 0.25rem;
}
.pipeline-card-info-value-label[data-v-97d7e6d9] {
  margin: 0;
  font-size: 12px;
  color: #1f2937;
  text-transform: uppercase;
  font-weight: 600;
}
.pipeline-card-info-value-amount[data-v-97d7e6d9] {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}
.pipeline-card-info-date-label[data-v-97d7e6d9] {
  font-size: 9px;
  color: #9ca3af;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.pipeline-card-info-date-value[data-v-97d7e6d9] {
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1f2937;
}
.pipeline-card-info-date-value-end[data-v-97d7e6d9] {
  color: #ef4444;
}
.pipeline-card-info-date-icon-start[data-v-97d7e6d9] { color: #3b82f6;
}
.pipeline-card-info-date-icon-end[data-v-97d7e6d9] { color: #ef4444;
}

/* Observation section */
.pipeline-card-info-observation-section[data-v-97d7e6d9] {
  padding: 0;
}
.pipeline-card-info-observation-loading[data-v-97d7e6d9] {
  font-size: 11px;
  color: #9ca3af;
  padding: 8px 0;
}
.pipeline-card-info-observation-content[data-v-97d7e6d9] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
}
.pipeline-card-info-observation-text[data-v-97d7e6d9] {
  font-size: 12px;
  color: #374151;
  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-97d7e6d9] {
  font-size: 10px;
  color: #9ca3af;
}
.pipeline-card-info-observation-empty[data-v-97d7e6d9] {
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
  padding: 8px 0;
  font-style: italic;
}
.pipeline-card-info-history-list[data-v-97d7e6d9] {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pipeline-card-info-history-item[data-v-97d7e6d9] {
  display: flex;
  gap: 0.75rem;
}
.pipeline-card-info-history-line[data-v-97d7e6d9] {
  width: 4px;
  border-radius: 9999px;
}
.pipeline-card-info-line-blue[data-v-97d7e6d9] { background-color: #60a5fa;
}
.pipeline-card-info-line-gray[data-v-97d7e6d9] { background-color: #e5e7eb;
}
.pipeline-card-info-history-text[data-v-97d7e6d9] {
  font-size: 12px;
  color: #4b5563;
  margin: 0;
}
.pipeline-card-info-history-text strong[data-v-97d7e6d9] {
  font-weight: 700;
}
.pipeline-card-info-footer[data-v-97d7e6d9] {
  padding: 10px 12px;
  background-color: #f9fafb;
  border-top: 1px solid #f3f4f6;
  gap: 0.5rem;
}
.pipeline-card-info-footer-avatar[data-v-97d7e6d9] {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
}
.pipeline-card-info-footer-text[data-v-97d7e6d9] {
  font-size: 10px;
  color: #6b7280;
}
.pipeline-card-info-footer-text strong[data-v-97d7e6d9] {
  font-weight: 600;
}

/* Notebooks pequenos — sidebar mais estreita */
@media (max-width: 1280px) {
.pipeline-card-info-sidebar[data-v-97d7e6d9] {
    width: 280px;
    min-width: 240px;
    max-width: 300px;
}
}

/* Notebooks compactos / tablet landscape — sidebar colapsa para coluna */
@media (max-width: 1024px) {
.pipeline-card-info-sidebar[data-v-97d7e6d9] {
    display: none;
}
}

/* Tablet portrait — sidebar full-width empilhada */
@media (max-width: 768px) {
.pipeline-card-info-sidebar[data-v-97d7e6d9] {
    display: flex;
    width: 100%;
    min-width: 0;
    max-width: none;
    max-height: 360px;
    border-right: none;
    border-top: 1px solid #e5e7eb;
}
}.pipeline-card-details[data-v-03242d0a] {
  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-03242d0a] {
  /* --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-03242d0a] {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 24px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}
.pipeline-card-details-top-title-row[data-v-03242d0a] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.pipeline-card-details-top-title-group[data-v-03242d0a] {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.pipeline-card-details-back-btn[data-v-03242d0a] {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 9999px;
  background: #f3f4f6;
  color: #4b5563;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.pipeline-card-details-back-btn[data-v-03242d0a]:hover {
  background: #e5e7eb;
  color: #111827;
}
.pipeline-card-details-top-title[data-v-03242d0a] {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  text-transform: uppercase;
  word-break: break-word;
  white-space: normal;
  min-width: 0;
}
.pipeline-card-details-main-content[data-v-03242d0a] > :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-03242d0a] {
    --pipeline-card-details-tabs-offset: 52px;
}
.pipeline-card-details-top[data-v-03242d0a] {
    padding: 14px 20px;
    gap: 24px;
}
}

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

/* Tablet portrait — layout em coluna */
@media (max-width: 768px) {
.pipeline-card-details[data-v-03242d0a] {
    left: 0;
    border-radius: 0;
}
.pipeline-card-details-main-content[data-v-03242d0a] {
    --pipeline-card-details-tabs-offset: 0px;
    flex-direction: column;
    position: relative;
}
.pipeline-card-details-top[data-v-03242d0a] {
    padding: 10px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
}

/* Mobile — boas práticas básicas */
@media (max-width: 640px) {
.pipeline-card-details[data-v-03242d0a] {
    font-size: 14px;
}
.pipeline-card-details-top[data-v-03242d0a] {
    padding: 8px 12px;
    gap: 6px;
}
}
