body {
  /* font-family: "Poppins", sans-serif; */
  background-color: #f4f7fc;
  color: #212529;
  height: 100vh;
  /* overflow: hidden; */
}

.main-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.content-scroll-area {
  flex-grow: 1;
  overflow-y: auto;
  min-height: 0;
  padding-right: 15px;
}

.dashboard-card {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 0.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-header {
  background-color: transparent;
  border-bottom: 1px solid #e9ecef;
  font-weight: 600;
}

.summary-card .card-body {
  display: flex;
  align-items: center;
}

.summary-icon {
  font-size: 2.5rem;
  color: #568fe6f6;
  padding: 1rem;
  background-color: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  margin-right: 1.5rem;
}

.summary-value {
  font-size: clamp(1rem, 1.5vw, 2rem);
  font-weight: 700;
  color: #343a40;
}

.summary-label {
  font-size: 1rem;
  font-weight: 400;
  color: #5f676e;
}

.table-container {
  flex-grow: 1;
  overflow-y: auto;
  min-height: 200px;
}

.table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #ffffff;
}

.chart-container {
  position: relative;
  flex-grow: 1;
  min-height: 250px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ced4da;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #adb5bd;
}