body {
  font-size: 12px;
  overflow-x: hidden;
}

/* Ajuste de Alinhamento e Scroll */
.table-container {
  width: 100%;
  padding: 10px;
}
table.dataTable {
  width: 100% !important;
  border-collapse: collapse !important;
}

table.dataTable tbody td,
table.dataTable thead th {
  white-space: nowrap !important;
  padding: 8px 12px !important;
}

/* Classes de Largura Reintegradas */
.ellipsis {
  max-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap !important;
}
.col-interessado {
  max-width: 200px;
}
.col-ato {
  max-width: 150px;
}
.col-solicitacao {
  max-width: 250px;
}
.col-protocolo {
  max-width: 120px;
}

/* Estilos dos Tooltips/Tips */
.tip-content {
  max-height: 300px;
  overflow-y: auto;
  width: 300px;
  display: none;
  position: absolute;
  z-index: 100;
  background: white;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  right: 0; /* Evita que o tip saia da tela à direita */
}
.tip-container:hover .tip-content {
  display: block;
}

.filter-header {
  background: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  gap: 15px;
  align-items: center;
}

.dataTables_filter label {
  font-weight: bold;
  display: flex;
  align-items: center;
}
.dataTables_filter input {
  margin-left: 10px !important;
}
