#page-top {
  height: 100vh;
}

/* Overlay que cobre toda a tela */

.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Círculo giratório */

.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* Animação de rotação */

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Define o contêiner da tabela como scrollable */

.table-responsive {
  overflow-y: auto;
  max-height: 447px;
}

/* Estilização do cabeçalho */

table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  text-align: center;
  padding: 10px;
  font-weight: bold;
}

/* Estilização para o corpo da tabela */

table tbody tr td {
  padding: 10px;
  border: 1px solid #dee2e6;
  text-align: center;
}

.chart-area {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.chart-area-ind {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

.chart-area canvas {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.chart-area-ind canvas {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

