  .form-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
    animation: slideInDown 0.5s ease;
  }

  @keyframes slideInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .form-header h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
  }

  .form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.6s ease;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .form-card .card-body {
    padding: 2rem;
  }

  .form-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .form-label::before {
    content: '';
    width: 3px;
    height: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
  }

  .form-control, .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  .form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #667eea;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25), 0 4px 12px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
  }

  .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  .form-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(102, 126, 234, 0.3);
  }

  .text-danger {
    color: #ef4444 !important;
    font-weight: 600;
    padding: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    margin-top: 0.5rem;
    display: inline-block;
    animation: shake 0.5s ease;
  }

  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
  }

/* ===== Permissões (grid & cards) ===== */
.user-perms .perm-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.user-perms .perm-item:hover {
  background: rgba(102, 126, 234, 0.05);
  border-color: rgba(102, 126, 234, 0.2);
}

/* mantém o switch DENTRO do card (anula margin-left negativo do BS) */
.user-perms .form-switch .form-check-input {
  margin-left: 5 !important;
}

/* visual do switch */
.user-perms .form-check-input {
  width: 3rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: inset 0 0 0 8px transparent;
}
.user-perms .form-check-input:checked {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

/* label e foco */
.user-perms .form-check-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  user-select: none;
}
.user-perms .form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}


  .card-footer {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
  }

  .btn {
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }

  .btn:hover::before {
    width: 300px;
    height: 300px;
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  }

  .btn-primary:hover {
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
  }

  .btn-outline-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
  }

  .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
  }

  .alert {
    border-radius: 12px;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    animation: slideInRight 0.5s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .alert-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  }

  .alert-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  }

  .alert-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  }

  .alert-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  }

  .input-group {
    position: relative;
  }

  .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    z-index: 10;
    pointer-events: none;
  }

  .has-icon .form-control,
  .has-icon .form-select {
    padding-left: 3rem;
  }

  .section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
    margin: 2rem 0;
    position: relative;
  }

  .section-divider::after {
    content: attr(data-label);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 26, 46, 0.9);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
  }

  /* controle do select */
  select, .form-select {
    background: #3a3f59;
    color: #e8eaf0;
    border: 1px solid #5a6a85;
    border-radius: .6rem;
  }
  select:focus, .form-select:focus {
    border-color: #7aa2ff;
    box-shadow: 0 0 0 .25rem rgba(122,162,255,.25);
  }

  /* opções no dropdown (funciona bem em Chrome/Edge; no macOS/iOS é limitado) */
  select option { background: #3a3f59; color: #e8eaf0; }
  select option:hover { background: #3a3f59; color: #fff; }
  select option:checked { background: #3b82f6 !important; color: #fff; }



/* ===== ANIMÇÃO CAMPOS ===== */

    /* Reaproveita seu fadeInUp do home */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    /* Saída suave para baixo */
    @keyframes fadeOutDown {
      from { opacity: 1; transform: translateY(0); }
      to   { opacity: 0; transform: translateY(20px); }
    }

    /* Contêiner animável */
    .anim-field {
      will-change: transform, opacity;
    }

    /* Estados de animação controlados via JS */
    .anim-enter {
      animation: fadeInUp .35s ease-out both;
    }
    .anim-exit {
      animation: fadeOutDown .25s ease-in both;
    }

    /* Se quiser bloquear clique durante saída */
    .anim-exit,
    .anim-hidden {
      pointer-events: none;
    }

    /* Estado oculto sem usar d-none (pra animação rodar antes) */
    .anim-hidden {
      opacity: 0;
      transform: translateY(20px);
      height: 0;
      margin: 0 !important;
      overflow: hidden;
    }

    /* Respeita usuários com “reduzir animações” */
    @media (prefers-reduced-motion: reduce) {
      .anim-enter, .anim-exit { animation: none !important; }
      .anim-hidden { transition: none !important; }
    }

/* ===== Dropdown dark legível para <select class="form-select"> ===== */
/* Grupo (rótulo do optgroup) */
.form-select optgroup {
  background-color: #353a52;              /* mantém o mesmo fundo */
  color: #b7c2e6;                          /* tom mais claro para o título */
  font-weight: 600;
}

/* Fonte resultados processamento */
/* tamanho bem visível para campos calculados */
.input-xl {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

/* mantém contraste em readonly/disabled */
.input-xl[readonly],
.input-xl:disabled {
  background-color: var(--bs-body-bg, #fff) !important;
  opacity: 1 !important;
}

/* opcional: um destaque suave pros resultados */
.calc-result {
  background: rgba(13,110,253,0.06) !important;
  border-color: rgba(13,110,253,0.35) !important;
}

/* centraliza o texto dos resultados */
.centered-result {
  text-align: center !important;
}

/* se quiser remover as setinhas do input number */
.centered-result::-webkit-outer-spin-button,
.centered-result::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.centered-result { -moz-appearance: textfield; }

/* se aparentar descentrado verticalmente, ajuste o padding: */
.centered-result {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

/* ==========================================
   FORMS.CSS — TEMA CLARO (override)
   Ativo quando: <html data-bs-theme="light">
   ========================================== */

/* Header */
:root[data-bs-theme="light"] .form-header {
  background: linear-gradient(135deg, rgba(91,140,254,0.10) 0%, rgba(152,103,255,0.10) 100%);
  border: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}

/* Card base */
:root[data-bs-theme="light"] .form-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
:root[data-bs-theme="light"] .form-card .card-body { color: #101622; }

/* Labels */
:root[data-bs-theme="light"] .form-label {
  color: #1b2130;
}
:root[data-bs-theme="light"] .form-label::before {
  background: linear-gradient(135deg, #5b8cfe 0%, #9867ff 100%);
}

/* Inputs & selects */
:root[data-bs-theme="light"] .form-control,
:root[data-bs-theme="light"] .form-select {
  background: rgba(0,0,0,0.03);
  border: 2px solid rgba(13,110,253,0.22);
  color: #101622;
}
:root[data-bs-theme="light"] .form-control:focus,
:root[data-bs-theme="light"] .form-select:focus {
  background: rgba(0,0,0,0.04);
  border-color: #5b8cfe;
  box-shadow: 0 0 0 0.25rem rgba(13,110,253,0.20), 0 4px 12px rgba(13,110,253,0.18);
  transform: translateY(-2px);
}
:root[data-bs-theme="light"] .form-control::placeholder {
  color: rgba(0,0,0,0.45);
}

/* Help text */
:root[data-bs-theme="light"] .form-text {
  color: rgba(0,0,0,0.70);
  border-left: 2px solid rgba(13,110,253,0.25);
}

/* Erros (mantém cor, ajusta contraste do fundo) */
:root[data-bs-theme="light"] .text-danger {
  background: rgba(239,68,68,0.08);
  color: #b91c1c !important;
}

/* Permissões (cards + switches) */
:root[data-bs-theme="light"] .user-perms .perm-item {
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.08);
}
:root[data-bs-theme="light"] .user-perms .perm-item:hover {
  background: rgba(13,110,253,0.06);
  border-color: rgba(13,110,253,0.22);
}
:root[data-bs-theme="light"] .user-perms .form-check-input {
  background: rgba(0,0,0,0.06);
  border: 2px solid rgba(13,110,253,0.26);
  box-shadow: inset 0 0 0 8px transparent;
}
:root[data-bs-theme="light"] .user-perms .form-check-input:checked {
  background: linear-gradient(135deg, #5b8cfe 0%, #9867ff 100%);
  border-color: #5b8cfe;
  box-shadow: 0 0 0 0.25rem rgba(13,110,253,0.20);
}
:root[data-bs-theme="light"] .user-perms .form-check-label { color: #101622; }

/* Rodapé do card */
:root[data-bs-theme="light"] .card-footer {
  background: linear-gradient(135deg, rgba(91,140,254,0.06) 0%, rgba(152,103,255,0.06) 100%);
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* Botões */
:root[data-bs-theme="light"] .btn-primary {
  background: linear-gradient(135deg, #5b8cfe 0%, #9867ff 100%);
  box-shadow: 0 6px 20px rgba(13,110,253,0.25);
}
:root[data-bs-theme="light"] .btn-primary:hover {
  box-shadow: 0 10px 28px rgba(13,110,253,0.32);
}
:root[data-bs-theme="light"] .btn-outline-secondary {
  border: 2px solid rgba(0,0,0,0.25);
  color: #1b2130;
}
:root[data-bs-theme="light"] .btn-outline-secondary:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.38);
  color: #101622;
}

/* Alerts */
:root[data-bs-theme="light"] .alert {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
:root[data-bs-theme="light"] .alert-success {
  /* mantém gradiente; já tem bom contraste no claro */
}
:root[data-bs-theme="light"] .alert-danger { }
:root[data-bs-theme="light"] .alert-warning { }
:root[data-bs-theme="light"] .alert-info { }

/* Input com ícone à esquerda */
:root[data-bs-theme="light"] .input-icon {
  color: rgba(0,0,0,0.45);
}

/* Divisor de seção */
:root[data-bs-theme="light"] .section-divider::after {
  background: rgba(255,255,255,0.90);
  color: #1b2130;
  border: 1px solid rgba(0,0,0,0.06);
}

/* Selects (corpo e opções) */
:root[data-bs-theme="light"] select,
:root[data-bs-theme="light"] .form-select {
  background: #f3f6ff;
  color: #101622;
  border: 1px solid #c6d2f5;
}
:root[data-bs-theme="light"] select:focus,
:root[data-bs-theme="light"] .form-select:focus {
  border-color: #5b8cfe;
  box-shadow: 0 0 0 .25rem rgba(91,140,254,.25);
}
:root[data-bs-theme="light"] select option,
:root[data-bs-theme="light"] .form-select option {
  background: #f3f6ff;
  color: #101622;
}

/* Optgroup legível no claro */
:root[data-bs-theme="light"] .form-select optgroup {
  background-color: #eaf0ff;
  color: #27304a;
}

/* Campos “XL” de resultado */
:root[data-bs-theme="light"] .calc-result {
  background: rgba(13,110,253,0.06) !important;
  border-color: rgba(13,110,253,0.35) !important;
}
:root[data-bs-theme="light"] .centered-result { color: #101622; }

/* =========================
   MODAIS ESPECIAIS (QR/Unlock)
   ========================= */


/* BOTAO COLETOR DE DADOS */

.btn-imv-inteligente {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-imv-inteligente:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-imv-inteligente:active {
  transform: translateY(0);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.btn-content svg {
  animation: rotate 3s linear infinite;
}

.star {
  position: absolute;
  font-size: 14px;
  animation: sparkle 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.star-1 {
  top: -8px;
  left: 15%;
  animation-delay: 0s;
}

.star-2 {
  top: 50%;
  left: -10px;
  animation-delay: 0.5s;
}

.star-3 {
  bottom: -8px;
  left: 40%;
  animation-delay: 1s;
}

.star-4 {
  top: 15%;
  right: -10px;
  animation-delay: 1.5s;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5) translateY(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) translateY(-8px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== TABELA DE ITENS DO PEDIDO (baseada em list.css .table-soft) ===== */



/* Header da tabela - igual list.css */
.itens-table-container .table-soft thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: linear-gradient(180deg,
              rgba(255, 255, 255, 0.22) 0%,
              rgba(255, 255, 255, 0.10) 100%);
  color: #f5f8ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  padding: 0.9rem 1rem;
}

/* Alinhamento do header para colunas específicas */
.itens-table-container .table-soft thead th.text-end {
  text-align: right;
}

.itens-table-container .table-soft thead th.text-center {
  text-align: center;
}

/* Barra de realce ao passar o mouse no th */
.itens-table-container .table-soft thead th::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  margin-top: 0.4rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.itens-table-container .table-soft thead th:hover::after {
  width: 36%;
}

/* Células do corpo - igual list.css */
.itens-table-container .table-soft tbody td {
  padding: 0.85rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  color: #dee6fb;
}

/* Listras suaves para leitura */
.itens-table-container .table-soft tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.055);
}

/* Hover: eleva e clareia a linha */
.itens-table-container .table-soft tbody tr {
  transition: transform 0.18s ease, background 0.18s ease;
}

.itens-table-container .table-soft tbody tr:hover td {
  background: rgba(255, 255, 255, 0.12);
}

.itens-table-container .table-soft tbody tr:hover {
  transform: translateY(-1px);
}

/* Primeira e última coluna com cantos arredondados */
.itens-table-container .table-soft thead th:first-child,
.itens-table-container .table-soft tbody tr td:first-child {
  border-left: 0;
}

.itens-table-container .table-soft thead th:last-child,
.itens-table-container .table-soft tbody tr td:last-child {
  border-right: 0;
}

.itens-table-container .table-soft thead tr:first-child th:first-child {
  border-top-left-radius: 14px;
}

.itens-table-container .table-soft thead tr:first-child th:last-child {
  border-top-right-radius: 14px;
}

.itens-table-container .table-soft tbody tr:last-child td:first-child {
  border-bottom-left-radius: 14px;
}

.itens-table-container .table-soft tbody tr:last-child td:last-child {
  border-bottom-right-radius: 14px;
}

/* Textarea de observações */
.itens-table-container .table-soft textarea.form-control {
  min-height: 45px;
  resize: vertical;
}

/* Checkbox de DELETE */
.itens-table-container .table-soft input[type="checkbox"] {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  accent-color: #ef4444;
  transition: all 0.2s ease;
}

.itens-table-container .table-soft input[type="checkbox"]:hover {
  transform: scale(1.1);
}

/* Erros dentro da tabela */
.itens-table-container .table-soft .text-danger,
.itens-table-container .table-soft .errorlist {
  font-size: 0.8rem;
  padding: 0.3rem 0.5rem;
  margin-top: 0.3rem;
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 6px;
  color: #ef4444 !important;
}

/* Estado vazio (se não houver itens) */
.itens-table-container .empty-state {
  background: rgba(255, 255, 255, 0.04);
  color: #cfd8ff;
  text-align: center;
  padding: 2rem 1rem !important;
}

.itens-table-container .empty-state i {
  font-size: 1.7rem;
  display: block;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}

/* Responsividade */
@media (max-width: 768px) {
  .itens-table-container .table-soft thead th,
  .itens-table-container .table-soft tbody td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }
  
  .itens-table-container .table-soft .form-control,
  .itens-table-container .table-soft .form-select {
    min-width: 120px;
    font-size: 0.85rem;
  }
}

/* ===== TEMA CLARO - TABELA DE ITENS ===== */

:root[data-bs-theme="light"] .itens-header {
  background: linear-gradient(135deg, rgba(91, 140, 254, 0.10) 0%, rgba(152, 103, 255, 0.10) 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

:root[data-bs-theme="light"] .itens-header h2 {
  color: #1b2130;
}

:root[data-bs-theme="light"] .itens-header p {
  color: rgba(0, 0, 0, 0.65);
}

:root[data-bs-theme="light"] .itens-table-container .table-soft {
  background: rgba(255, 255, 255, 0.86);
  color: #1b2130;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

:root[data-bs-theme="light"] .itens-table-container .table-soft thead th {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.02) 100%);
  color: #101622;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

:root[data-bs-theme="light"] .itens-table-container .table-soft thead th::after {
  background: linear-gradient(135deg, #5b8cfe, #9867ff);
}

:root[data-bs-theme="light"] .itens-table-container .table-soft tbody td {
  background: rgba(0, 0, 0, 0.02);
  color: #1b2130;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

:root[data-bs-theme="light"] .itens-table-container .table-soft tbody tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.035);
}

:root[data-bs-theme="light"] .itens-table-container .table-soft tbody tr:hover td {
  background: rgba(13, 110, 253, 0.08);
}

:root[data-bs-theme="light"] .itens-table-container .table-soft .form-control,
:root[data-bs-theme="light"] .itens-table-container .table-soft .form-select {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(13, 110, 253, 0.26);
  color: #101622;
}

:root[data-bs-theme="light"] .itens-table-container .table-soft .form-control:focus,
:root[data-bs-theme="light"] .itens-table-container .table-soft .form-select:focus {
  background: rgba(0, 0, 0, 0.06);
  border-color: #5b8cfe;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.20);
}

:root[data-bs-theme="light"] .itens-table-container .empty-state {
  background: rgba(0, 0, 0, 0.03);
  color: #33415c;
}