
.admin-dashboard__title {
  text-align: center;
}

.admin-dashboard__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.admin-dashboard__section-title {
  margin-top: 2rem;
}

.admin-dashboard__actions-details {
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
}



@media (max-width: 480px) {
  .admin-dashboard__stats-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 350px;
    margin: 2rem auto 0;
  }
  
  .admin-dashboard__stat-card {
    text-align: center;
    width: 100%;
    max-width: 280px;
  }
  

  .admin-dashboard__stat-card canvas {
    max-width: 100%;
    height: auto;
  }
  
}

/* Light mode styles */
@media (prefers-color-scheme: light) {
  body {
    background-color: #f0f2f5;
  }

  .admin-dashboard__stat-card {
    background-color: #ffffff; 
    border: 1px solid #cbd5e1;  
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1rem;
  }

  .admin-dashboard__actions-details {
    background-color: #ffffff;
  }

  .admin-dashboard__table thead {
    background-color: #e2e8f0;
  }
}