/* Standard card or section wrapper */
.sentinelpro-section {
  background: #fff;
  padding: 24px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 30px;
}

/* Max-width constraints */
.sentinelpro-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.sentinelpro-grid {
  display: grid;
  gap: 20px;
}

.sentinelpro-grid.two-cols {
  grid-template-columns: repeat(2, 1fr);
}

.sentinelpro-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 768px) {
  .sentinelpro-grid.two-cols,
  .sentinelpro-grid.three-cols {
    grid-template-columns: 1fr;
  }
}

/* Spacing helpers */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-10 { margin-bottom: 10px; }
.p-20 { padding: 20px; }
.pt-10 { padding-top: 10px; }

/* Flexbox helpers */
.flex {
  display: flex;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-wrap {
  flex-wrap: wrap;
}

.sentinelpro-chart-wrapper,
.sentinelpro-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}

canvas {
  max-width: 100%;
  height: auto;
}

#toggle-filters {
  margin-bottom: 10px;
}
