/* ==============================
   CONTAINER PRINCIPAL
================================= */
.interactive-table-container[data-v-8d570d25] {
  width: 100%;
  background: #fff;
  border-radius: 8px;
}

/* Palette variables (system) - usado para ícones e elementos da tabela */
[data-v-8d570d25]:root {
  --color-navy-dark: #03045E;
  --color-navy: #023E8A;
  --color-blue: #0077B6;
  --color-sky: #0096C7;
  --color-cyan: #00B4D8;
  --color-aqua: #48CAE4;
  --color-aqua-light: #90E0EF;
  --color-ice: #ADE8F4;
  --color-ice-light: #CAF0F8;
  --color-ice-super-light: #f0f7fb;
}

/* ==============================
   WRAPPER DA TABELA
================================= */
.interactive-table-wrapper[data-v-8d570d25] {
  border-radius: 8px;
  /* overflow: hidden; */
  border: 1px solid #E5E7EB;
}

/* ==============================
   TABELA
================================= */
.interactive-table[data-v-8d570d25] {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
  table-layout: fixed; /* Força a tabela a respeitar as larguras das colunas */
}

/* ==============================
   CABEÇALHO DA TABELA
================================= */
.interactive-table-header[data-v-8d570d25] {
  background: #F9FAFB;
}
.interactive-table-header-row[data-v-8d570d25] {
  border-bottom: 1px solid #E5E7EB;
}
.interactive-table-header-cell[data-v-8d570d25] {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  /* manter capitalização original dos rótulos (não forçar maiúsculas) */
  text-transform: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: relative;
  vertical-align: middle;
}

/* Estilos específicos para colunas de actions (para produtos) */
.interactive-table-header-actions[data-v-8d570d25] {
  width: 120px;
  text-align: center;
}

/* ==============================
   FUNCIONALIDADE DE ORDENAÇÃO
================================= */
.interactive-table-sortable[data-v-8d570d25] {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background-color 0.2s ease;
}
.interactive-table-sortable[data-v-8d570d25]:hover {
  background-color: #F3F4F6;
}
.interactive-table-header-content[data-v-8d570d25] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.interactive-table-header-text[data-v-8d570d25] {
  flex: 1;
  font-size: 12px;
}
.interactive-table-sort-indicator[data-v-8d570d25] {
  font-size: 12px;
  color: #6B7280;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.interactive-table-sortable:hover .interactive-table-sort-indicator[data-v-8d570d25] {
  opacity: 1;
}
.interactive-table-sort-asc[data-v-8d570d25] {
  opacity: 1;
  color: #3B82F6;
}
.interactive-table-sort-desc[data-v-8d570d25] {
  opacity: 1;
  color: #3B82F6;
  transform: rotate(180deg);
}

/* ==============================
   CORPO DA TABELA
================================= */
.interactive-table-body[data-v-8d570d25] {
  background: #fff;
}
.interactive-table-row[data-v-8d570d25] {
  border-bottom: 1px solid #F3F4F6;
  transition: background-color 0.2s ease;
  animation: interactive-table-fade-in-8d570d25 0.3s ease-in-out;
}
.interactive-table-row[data-v-8d570d25]:last-child {
  border-bottom: none;
}
.interactive-table-row[data-v-8d570d25]:hover {
  background: #F8F9FA;
}

/* Estilos específicos para produtos - sem cores vibrantes */
.interactive-table-row-pending[data-v-8d570d25] {
  background: #F8F9FA;
  /* border-left: 2px solid #D1D5DB; */
}
.interactive-table-row-pending[data-v-8d570d25]:hover {
  background: #F1F3F4;
}
.interactive-table-empty-row[data-v-8d570d25] {
  background: #FAFAFA;
}
.interactive-table-empty-row[data-v-8d570d25]:hover {
  background: #FAFAFA;
}
.interactive-table-add-row[data-v-8d570d25] {
  background: #FAFBFC;
}
.interactive-table-add-row[data-v-8d570d25]:hover {
  background: #F5F6F7;
}
.interactive-table-cell[data-v-8d570d25] {
  padding: 14px 16px;
  color: #212529;
  vertical-align: middle;
  font-size: 14px;
}

/* Estilos específicos para células de produtos */
.interactive-table-cell-actions[data-v-8d570d25] {
  width: 120px;
  text-align: center;
}
.interactive-table-empty-cell[data-v-8d570d25] {
  text-align: center;
  padding: 40px 20px;
}
.interactive-table-add-cell[data-v-8d570d25] {
  padding: 12px 16px;
}

/* ==============================
   CÉLULAS COM INPUTS (mantém funcionalidade original)
================================= */
.interactive-table-cell input[data-v-8d570d25],
.interactive-table-cell select[data-v-8d570d25],
.interactive-table-cell textarea[data-v-8d570d25] {
  display: inline-block;
  height: 30px;
  padding: 4px 8px;
  font-size: 13px;
  line-height: 1;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  background: #fff;
  color: #111827;
  box-sizing: border-box;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  width: 100%;
}
.interactive-table-cell input[data-v-8d570d25]:focus,
.interactive-table-cell select[data-v-8d570d25]:focus,
.interactive-table-cell textarea[data-v-8d570d25]:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.interactive-table-cell input[data-v-8d570d25]::-moz-placeholder, .interactive-table-cell textarea[data-v-8d570d25]::-moz-placeholder {
  color: #9CA3AF;
}
.interactive-table-cell input[data-v-8d570d25]::placeholder,
.interactive-table-cell textarea[data-v-8d570d25]::placeholder {
  color: #9CA3AF;
}
.interactive-table-cell textarea[data-v-8d570d25] {
  height: auto;
  min-height: 60px;
  resize: vertical;
}

/* ==============================
   BORDAS CONDICIONAIS (mantém lógica original)
================================= */
.interactive-table:has(input) .interactive-table-header[data-v-8d570d25],
.interactive-table:has(select) .interactive-table-header[data-v-8d570d25],
.interactive-table:has(textarea) .interactive-table-header[data-v-8d570d25] {
  border-bottom: 1px solid #E5E7EB;
}
.interactive-table:has(input) .interactive-table-header-cell[data-v-8d570d25],
.interactive-table:has(select) .interactive-table-header-cell[data-v-8d570d25],
.interactive-table:has(textarea) .interactive-table-header-cell[data-v-8d570d25] {
  border-right: 1px solid #E5E7EB;
}
.interactive-table:has(input) .interactive-table-header-cell[data-v-8d570d25]:last-child,
.interactive-table:has(select) .interactive-table-header-cell[data-v-8d570d25]:last-child,
.interactive-table:has(textarea) .interactive-table-header-cell[data-v-8d570d25]:last-child {
  border-right: none;
}
.interactive-table:has(input) .interactive-table-cell[data-v-8d570d25],
.interactive-table:has(select) .interactive-table-cell[data-v-8d570d25],
.interactive-table:has(textarea) .interactive-table-cell[data-v-8d570d25] {
  border-right: 1px solid #F1F3F4;
}
.interactive-table:has(input) .interactive-table-cell[data-v-8d570d25]:last-child,
.interactive-table:has(select) .interactive-table-cell[data-v-8d570d25]:last-child,
.interactive-table:has(textarea) .interactive-table-cell[data-v-8d570d25]:last-child {
  border-right: none;
}

/* ==============================
   CÉLULAS ESPECIAIS (mantém funcionalidade original)
================================= */
.interactive-table-cell-status[data-v-8d570d25] {
  color: #3B82F6;
  font-weight: 500;
}

/* ==============================
   ANIMAÇÕES E TRANSIÇÕES
================================= */
@keyframes interactive-table-fade-in-8d570d25 {
from {
    opacity: 0;
    transform: translateY(-4px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* ==============================
   RESPONSIVIDADE
================================= */
@media (max-width: 768px) {
.interactive-table-container[data-v-8d570d25] {
    border-radius: 6px;
}
.interactive-table-wrapper[data-v-8d570d25] {
    border-radius: 6px;
}
.interactive-table[data-v-8d570d25] {
    font-size: 12px;
}
.interactive-table-header-cell[data-v-8d570d25],
  .interactive-table-cell[data-v-8d570d25] {
    padding: 12px 8px;
}
.interactive-table-header-cell[data-v-8d570d25] {
    font-size: 11px;
}
}
@media (max-width: 480px) {
.interactive-table-header-cell[data-v-8d570d25],
  .interactive-table-cell[data-v-8d570d25] {
    padding: 8px 6px;
}
.interactive-table[data-v-8d570d25] {
    font-size: 11px;
}
.interactive-table-cell input[data-v-8d570d25],
  .interactive-table-cell select[data-v-8d570d25],
  .interactive-table-cell textarea[data-v-8d570d25] {
    font-size: 12px;
    padding: 3px 6px;
}
}

/* ==============================
   ESTADOS DE HOVER MELHORADOS
================================= */
.interactive-table-row:hover .interactive-table-cell[data-v-8d570d25] {
  color: #111827;
}
.interactive-table-sortable[data-v-8d570d25]:hover {
  background-color: #F3F4F6;
}

/* ==============================
   MELHORIAS VISUAIS ADICIONAIS
================================= */
.interactive-table-wrapper[data-v-8d570d25] {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.interactive-table-header-cell[data-v-8d570d25] {
  background: #F9FAFB;
}
.interactive-table-cell[data-v-8d570d25] {
  background: inherit;
}

/* ==============================
   ESTILOS ESPECÍFICOS PARA PRODUTOS
================================= */
.interactive-table-empty-state[data-v-8d570d25] {
  color: #6B7280;
}
.interactive-table-empty-message[data-v-8d570d25] {
  font-size: 14px;
  margin: 0;
  color: #9CA3AF;
}
.interactive-table-product-info[data-v-8d570d25] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.interactive-table-product-badge[data-v-8d570d25] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0096C7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}
.interactive-table-product-name[data-v-8d570d25] {
  font-size: 12px;
  font-weight: 500;
  color: #374151;
}

/* Ações: adequar ícones à paleta do sistema */
.interactive-table-actions button[data-v-8d570d25],
.interactive-table-actions .products-table-remove-combobox-btn[data-v-8d570d25],
.interactive-table-actions .products-table-edit-btn-small[data-v-8d570d25],
.interactive-table-actions .products-table-remove-btn-simple[data-v-8d570d25],
.interactive-table-actions .products-table-confirm-btn[data-v-8d570d25],
.interactive-table-actions .products-table-cancel-btn[data-v-8d570d25] {
  background: transparent;
  border: none;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-blue); /* cor padrão dos ícones */
  transition: color .15s ease, background .15s ease, transform .08s ease;
}

/* Alvo do SVG (lucide usa stroke="currentColor") */
.interactive-table-actions button svg[data-v-8d570d25],
.interactive-table-actions button .lucide[data-v-8d570d25],
.interactive-table-actions .products-table-remove-combobox-btn svg[data-v-8d570d25] {
  color: var(--color-blue);
  stroke: currentColor;
  fill: none;
}

/* Hover/focus states */
.interactive-table-actions button[data-v-8d570d25]:hover,
.interactive-table-actions button[data-v-8d570d25]:focus {
  color: var(--color-navy);
  background: rgba(2, 62, 138, 0.04);
  border-radius: 6px;
}

/* Confirm (salvar) e cancel (x) visuais — seguem a mesma paleta, mas podem ser diferenciados facilmente */
.products-table-confirm-btn[data-v-8d570d25] {
  color: var(--color-sky);
}
.products-table-cancel-btn[data-v-8d570d25] {
  color: var(--color-navy-dark);
}

/* Pequenas variantes para botões "remover" para sinalizar ação sem sair da paleta */
.products-table-remove-btn-simple[data-v-8d570d25] {
  color: var(--color-blue);
}
.interactive-table-actions[data-v-8d570d25] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.interactive-table-confirm-actions[data-v-8d570d25] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.interactive-table-footer[data-v-8d570d25] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: #F9FAFB;
  border-top: 1px solid #E5E7EB;
}
.interactive-table-add-link[data-v-8d570d25] {
  color: #3B82F6;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.interactive-table-add-link[data-v-8d570d25]:hover:not(:disabled) {
  background: transparent;
  color: #2563EB;
  text-decoration: underline;
}
.interactive-table-add-link-disabled[data-v-8d570d25] {
  opacity: 0.5;
  cursor: not-allowed;
}
.interactive-table-total-summary[data-v-8d570d25] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.interactive-table-total-label[data-v-8d570d25] {
  color: #6B7280;
}
.interactive-table-total-amount[data-v-8d570d25] {
  font-weight: 600;
  color: #059669;
}
.products-table-container[data-v-66f06301] { 
  width: 100%; 
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ComboBox Wrapper */
.products-table-combobox-wrapper[data-v-66f06301] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}
.products-table-combobox-label[data-v-66f06301] {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin: 0;
}
.products-combobox-footer[data-v-66f06301] {
  padding: 8px 12px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}
.products-combobox-footer-text[data-v-66f06301] {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

/* Loading State */
.products-table-loading[data-v-66f06301] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 12px;
}
.products-table-spinner[data-v-66f06301] {
  width: 32px;
  height: 32px;
  border: 3px solid #f3f4f6;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin-66f06301 0.8s linear infinite;
}
@keyframes spin-66f06301 {
to { transform: rotate(360deg);
}
}
.products-table-loading-text[data-v-66f06301] {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

/* Empty State */
.products-table-empty[data-v-66f06301] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 12px;
  background: #fafafa;
  border: 2px dashed #e5e7eb;
  border-radius: 8px;
}
.products-table-empty svg[data-v-66f06301] {
  width: 48px;
  height: 48px;
  color: #d1d5db;
}
.products-table-empty-text[data-v-66f06301] {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
}
.products-table-empty-hint[data-v-66f06301] {
  margin: 0;
  font-size: 12px;
  color: #9ca3af;
}

/* Product Info */
.interactive-table-product-info[data-v-66f06301] { 
  display: flex; 
  align-items: center; 
  gap: 8px;
}
.interactive-table-product-badge[data-v-66f06301] {
  width: 28px; 
  height: 28px; 
  border-radius: 50%; 
  background: #2563eb; 
  color: #fff;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 600; 
  font-size: 13px;
}
.interactive-table-product-name[data-v-66f06301] { 
  font-weight: 500; 
  color: #111827; 
  font-size: 13px;
}

/* Status */
.status-active[data-v-66f06301] { 
  color: #065f46; 
  font-weight: 600;
}
.status-inactive[data-v-66f06301] { 
  color: #991b1b; 
  font-weight: 600;
}

/* Footer */
.interactive-table-footer-single[data-v-66f06301] {
  display: flex; 
  justify-content: flex-end; 
  align-items: center;
  padding: 12px; 
  border-top: 1px solid #e5e7eb;
  background: #fafafa;
}
.clear-btn[data-v-66f06301] {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid #fca5a5;
  color: #dc2626;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.clear-btn[data-v-66f06301]:hover {
  background: #fef2f2;
  border-color: #f87171;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.1);
}
.clear-btn svg[data-v-66f06301] {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
.products-table-combobox-wrapper[data-v-66f06301] {
    padding: 10px;
}
.interactive-table-footer-single[data-v-66f06301] {
    padding: 10px;
}
.clear-btn[data-v-66f06301] {
    font-size: 12px;
    padding: 7px 12px;
}
.products-table-empty[data-v-66f06301] {
    padding: 30px 15px;
}
.products-table-empty svg[data-v-66f06301] {
    width: 40px;
    height: 40px;
}
}

  /* ===== PRODUCTS SECTION ===== */
.section-full[data-v-ee9653d5] {
  margin-top: 8px;
  padding-top: 24px;
}
.section-toggle[data-v-ee9653d5] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  width: 100%;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-toggle[data-v-ee9653d5]:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.toggle-icon[data-v-ee9653d5] {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #3b82f6;
  background: white;
  border-radius: 6px;
  flex-shrink: 0;
}
.toggle-label[data-v-ee9653d5] {
  font-size: 14px;
  flex: 1;
}
.section-link[data-v-ee9653d5] {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #1890ff;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}
.section-link[data-v-ee9653d5]:hover {
  background: rgba(99, 176, 248, 0.06);
}
.section-link .toggle-icon[data-v-ee9653d5] {
  background: none;
  color: #1890ff;
  width: auto;
  height: auto;
  padding: 0;
  font-size: 16px;
  border-radius: 0;
}
.section-link-disabled[data-v-ee9653d5] {
  opacity: 0.85;
  cursor: not-allowed;
}
.section-content-full[data-v-ee9653d5] {
  margin-top: 20px;
  width: 100%;
  padding: 16px;
  overflow-y: visible;
}
.section-content-full[data-v-ee9653d5] .products-table-combobox-wrapper {
  width: 220px;
  max-width: 100%;
}
.section-content-full[data-v-ee9653d5] .products-table-container {
  width: 100%;
  max-width: 100%;
  position: relative;
}
.section-content-full[data-v-ee9653d5] .interactive-table-wrapper {
  width: 100%;
  min-width: 600px;
  overflow: visible;
}
.section-content-full[data-v-ee9653d5] .combo-box,
.section-content-full[data-v-ee9653d5] .combobox-wrapper {
  position: relative;
  z-index: 100;
}
.section-content-full[data-v-ee9653d5] .combo-dropdown {
  position: absolute;
  z-index: 1000;
  min-width: 280px;
}
.loading-state[data-v-ee9653d5] {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  gap: 16px;
}
.spinner[data-v-ee9653d5] {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f4f6;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin-ee9653d5 0.8s linear infinite;
}
@keyframes spin-ee9653d5 {
to { transform: rotate(360deg);
}
}
.edit-form[data-v-ee9653d5] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row--readonly[data-v-ee9653d5] {
  opacity: 0.58;
}
.section-full--readonly[data-v-ee9653d5] {
  opacity: 0.58;
}
.section-full--readonly .section-toggle[data-v-ee9653d5],
.section-full--readonly .section-content-full[data-v-ee9653d5] {
  pointer-events: none;
}
.form-row[data-v-ee9653d5] {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.form-label[data-v-ee9653d5] {
  min-width: 160px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-align: right;
  padding-top: 10px;
}
.form-input[data-v-ee9653d5] {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
}
.form-input[data-v-ee9653d5]:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.money-wrapper[data-v-ee9653d5] {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.money-wrapper--blocked[data-v-ee9653d5] {
  cursor: not-allowed;
}
.money-wrapper--blocked .money-input[data-v-ee9653d5] {
  cursor: not-allowed;
}
.money-input[data-v-ee9653d5] {
  flex: 1;
  padding-right: 40px !important;
  text-align: left;
}
.money-icon[data-v-ee9653d5] {
  position: absolute;
  right: 12px;
  color: #515159;
  pointer-events: none;
  flex-shrink: 0;
}
.calendar-wrapper[data-v-ee9653d5] {
  flex: 1;
}
.checkbox-wrapper[data-v-ee9653d5] {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkbox[data-v-ee9653d5] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Campos obrigatórios */
.form-input.required-field[data-v-ee9653d5],
.money-input.required-field[data-v-ee9653d5] {
  border-left: 4px solid #ef4444 !important;
  padding-left: 12px;
}
.calendar-wrapper.required-field[data-v-ee9653d5] .modern-calendar-input {
  border-left: 4px solid #ef4444 !important;
  padding-left: 12px;
}
.required-field[data-v-ee9653d5] .combo-trigger,
.required-field[data-v-ee9653d5] .combo-withicons-trigger {
  border-left: 4px solid #ef4444 !important;
  padding-left: 12px !important;
}

/* Disable edit mode in ComboBox for priorities */
.edit-form[data-v-ee9653d5] .combo-edit-input-wrapper,
.edit-form[data-v-ee9653d5] .combo-edit-btn,
.edit-form[data-v-ee9653d5] .combo-edit-actions {
  display: none !important;
}
.edit-form[data-v-ee9653d5] .combo-option.editing {
  background: transparent !important;
  cursor: pointer !important;
}

/* ===== RICH EDITOR WRAPPER ===== */
.edit-form-rich-editor-wrapper[data-v-ee9653d5] {
  flex: 1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.edit-form-rich-editor-wrapper[data-v-ee9653d5] .quillWrapper {
  display: flex;
  flex-direction: column;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.edit-form-rich-editor-wrapper[data-v-ee9653d5] .quillWrapper:hover {
  border-color: #cbd5e1;
}
.edit-form-rich-editor-wrapper[data-v-ee9653d5] .quillWrapper:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Toolbar - oculta quando não expandido */
.edit-form-rich-editor-wrapper[data-v-ee9653d5] .ql-toolbar {
  border: none !important;
  border-bottom: 1px solid #e2e8f0 !important;
  padding: 0 !important;
  margin: 0 !important;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.2s ease;
  background: #fafafa;
}
.edit-form-rich-editor-wrapper.is-expanded[data-v-ee9653d5] .ql-toolbar {
  max-height: 32px;
  opacity: 1;
  padding: 4px 8px !important;
  overflow: visible;
}
.edit-form-rich-editor-wrapper[data-v-ee9653d5] .ql-toolbar button {
  width: 22px;
  height: 22px;
  padding: 2px;
  margin: 0 1px;
}
.edit-form-rich-editor-wrapper[data-v-ee9653d5] .ql-toolbar .ql-stroke {
  stroke-width: 2;
}
.edit-form-rich-editor-wrapper[data-v-ee9653d5] .ql-toolbar button svg {
  width: 14px !important;
  height: 14px !important;
}
.edit-form-rich-editor-wrapper[data-v-ee9653d5] .ql-toolbar button:hover {
  background: #e5e7eb;
  border-radius: 3px;
}
.edit-form-rich-editor-wrapper[data-v-ee9653d5] .ql-toolbar button.ql-active {
  background: #dbeafe;
  border-radius: 3px;
}
.edit-form-rich-editor-wrapper[data-v-ee9653d5] .ql-formats {
  margin-right: 6px !important;
}
.edit-form-rich-editor-wrapper[data-v-ee9653d5] .ql-formats:last-child {
  margin-right: 0 !important;
}

/* Container - altura inicial de input */
.edit-form-rich-editor-wrapper[data-v-ee9653d5] .ql-container {
  border: none !important;
  font-size: 14px;
  font-family: inherit;
  min-height: 40px;
  max-height: 40px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.edit-form-rich-editor-wrapper.is-expanded[data-v-ee9653d5] .ql-container {
  min-height: 120px;
  max-height: 300px;
  overflow-y: auto;
}

/* Editor */
.edit-form-rich-editor-wrapper[data-v-ee9653d5] .ql-editor {
  padding: 10px 14px;
  min-height: inherit;
  color: #1e293b;
  line-height: 1.6;
  font-size: 14px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.edit-form-rich-editor-wrapper[data-v-ee9653d5] .ql-editor.ql-blank::before {
  color: #9ca3af;
  font-style: normal;
  left: 14px;
  font-size: 14px;
}

/* Quando não expandido, centraliza o placeholder verticalmente */
.edit-form-rich-editor-wrapper[data-v-ee9653d5]:not(.is-expanded) .ql-editor {
  display: flex;
  align-items: center;
}
.edit-form-rich-editor-wrapper[data-v-ee9653d5]:not(.is-expanded) .ql-editor.ql-blank::before {
  position: static;
  transform: none;
}

/* ===== PRIVACY SWITCH ===== */
.privacy-switch-wrapper[data-v-ee9653d5] {
  display: flex;
  /*align-items: center;*/
  gap: 10px;
  white-space: nowrap;
}
.privacy-switch-wrapper.is-disabled[data-v-ee9653d5] {
  opacity: 0.5;
}
.privacy-switch-compact[data-v-ee9653d5] {
  gap: 8px;
}
.privacy-switch[data-v-ee9653d5] {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.privacy-switch-small[data-v-ee9653d5] {
  width: 36px;
  height: 20px;
}
.privacy-switch input[data-v-ee9653d5] {
  opacity: 0;
  width: 0;
  height: 0;
}
.privacy-slider[data-v-ee9653d5] {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: 0.3s;
  border-radius: 24px;
}
.privacy-slider[data-v-ee9653d5]:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}
.privacy-switch-small .privacy-slider[data-v-ee9653d5]:before {
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
}
.privacy-switch input:checked + .privacy-slider[data-v-ee9653d5] {
  background-color: #3b82f6;
}
.privacy-switch input:checked + .privacy-slider[data-v-ee9653d5]:before {
  transform: translateX(20px);
}
.privacy-switch-small input:checked + .privacy-slider[data-v-ee9653d5]:before {
  transform: translateX(16px);
}
.privacy-switch input:disabled + .privacy-slider[data-v-ee9653d5] {
  cursor: not-allowed;
}
.privacy-label[data-v-ee9653d5] {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}

/* ===== CARD TYPE COMBO BOX WITH ICONS ===== */
.kanban-card-type-combo-wrapper[data-v-ee9653d5] {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.kanban-card-type-combo-wrapper[data-v-ee9653d5] .combo-box {
  flex: 1;
  min-width: 0;
}
.kanban-card-type-combo-display[data-v-ee9653d5] {
  position: absolute;
  left: 12px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.kanban-card-type-combo-name[data-v-ee9653d5] {
  font-size: 14px;
  color: #374151;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kanban-card-type-combo-display[data-v-ee9653d5] svg,
.kanban-card-type-combo-display[data-v-ee9653d5] .icon-wrapper svg {
  flex-shrink: 0;
  fill: currentColor;
}

/* Esconde o valor padrão apenas quando há uma seleção */
.kanban-card-type-combo-wrapper.has-selection[data-v-ee9653d5] .combo-value-container {
  opacity: 0;
  pointer-events: none;
}
.kanban-card-type-combo-wrapper.has-selection[data-v-ee9653d5] .combo-value {
  display: none;
}
.kanban-card-type-combo-wrapper[data-v-ee9653d5] .combo-option-color-indicator {
  display: none;
}
.kanban-card-type-combo-wrapper[data-v-ee9653d5] .combo-option {
  display: flex;
  align-items: center;
  gap: 8px;
}
