.acoes {
  min-width: 10px;
  display: flex;
  align-content: space-between;
}

.acoes-button {
  flex: 1;
  margin-left: 5px;
  margin-left: 5px;
}

.indent-subitem {
  padding-left: 20px;
  /* Ajuste o valor para mais ou menos indentação */
}

.indent-subitem .nav-link {
  padding-left: 20px;
  /* Para garantir que o link também seja indentado */
}

.red-row {
  background-color: #ffcccc;
  /* Vermelho claro */
}

@media (max-width: 768px) {
  .hide-on-modal {
    display: none;
  }
}

.modal-dialog.custom-size {
  max-width: 90vw;
  /* 90% da largura da viewport */
  max-height: 90vh;
  /* 90% da altura da viewport */
  margin: auto;
  padding: 5vh 0;
  /* Adiciona espaço no topo e no rodapé */
}

.modal-content {
  max-height: 100%;
  /* Garante que o conteúdo do modal não ultrapasse a altura do modal */
  overflow-y: auto;
  /* Adiciona barra de rolagem se o conteúdo exceder a altura */
}

.custom-padding {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1px !important;
}

.no-wrap {
  white-space: nowrap;
}

.card-body.cusmtom-card-body {
  padding: 0.5rem !important;
  padding-right: 1px !important;
  padding-left: 1px !important;
}

.custom-col-12 {
  position: relative;
  width: 100%;
  padding-right: 1px !important;
  padding-left: 1px !important;
}

.content-wrapper>.content {
  padding: 0.3rem !important;
}

.swal2-container {
  z-index: 9999 !important;
  /* Garantir que o modal fique por cima de tudo */
}

.swal2-input {
  pointer-events: auto !important;
  /* Garante que o campo de input receba interações */
}

/* Ocultar input */
.rfid-hidden-input {
  position: absolute;
  left: -9999px;
}

.loading-line {
  width: 0%;
  height: 4px;
  background-color: #2483e8b7;
  animation: pulse 3.5s infinite;
  margin: 2px auto;
  border-radius: 5px;
}

@keyframes pulse {
  0% {
    width: 0%;
  }

  50% {
    width: 80%;
  }

  100% {
    width: 0%;
  }
}

.bg-light {
  opacity: 0.8;
  border: 2px dashed #999;
}

.content-wrapper.kanban .card.card-row {
  width: 24% !important;
  display: inline-block;
  margin: 0 .5rem;
  min-width: 200px;
  max-width: 300px;
}

/* Responsivo para telas pequenas */
@media (max-width: 768px) {
  .content-wrapper.kanban .card.card-row {
    flex: 1 1 100%;
  }
}

/* tamanho das fontes do menu */
.main-sidebar p {
  font-size: 12px;
}

/* tamanho das fontes em todas as tabelas */
table {
  font-size: 12px;
}

#document-viewer img {
  max-width: 100%;
  /* já cobre a largura */
  max-height: 80vh;
  /* limita a altura em até 80% da tela */
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* css para modal fullscreen LIP */
.modal-full {
  max-width: 100%;
  margin: 0;
}

.modal-full .modal-content {
  height: 100vh;
  border-radius: 0;
}

.blink {
  animation: blinkAnim 1s infinite alternate;
}

@keyframes blinkAnim {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

/* ==========================
   BLOCO DE ASSISTENTE IA
   ========================== */
.assistant-header {
  background: linear-gradient(90deg, #0056ff, #0099ff);
  color: white;
  /* padding: 15px; */
  border-radius: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  font-family: "Segoe UI", Arial, sans-serif;
  /* margin-bottom: 20px; */
  position: relative;
}

/* Caixa de chat */
.assistant-chat-box {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 8px;
  margin-top: 8px;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
}

/* Mensagens */
.assistant-msg {
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 80%;
  word-wrap: break-word;
}

.assistant-user {
  align-self: flex-end;
  background: #e0edff;
  color: #003366;
}

.assistant-ia {
  align-self: flex-start;
  background: #f0f0f0;
  color: #333;
}

/* Área de entrada */
.assistant-input-area {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  padding: 8px;
}

.assistant-input-area textarea {
  flex: 1;
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 10px;
  resize: none;
  font-size: 14px;
  height: 50px;
}

.assistant-input-area button {
  background: #007bff;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.assistant-input-area button:hover {
  background: #0056cc;
}

.assistant-card .assistant-card-body {
  margin: 0;
  padding: 0;
}

/* Botões de sugestões */
.assistant-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 15px 0;
}

.assistant-btn {
  background: #eef4ff;
  border: 1px solid #007bff;
  color: #007bff;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.assistant-btn:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
}

.ce {
  color: #0056ff;
  font-weight: 700;
}

.ia {
  color: #ff3b3b;
  font-weight: 700;
}

.assistant-header strong {
  color: #333;
}

/* css para dashboard convocacao */
.content-header h1 {
  font-weight: 600;
}

.filter-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 15px;
  margin-bottom: 20px;
}

canvas {
  width: 100% !important;
  height: 350px !important;
}