/* Global Reset & Typography */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #2d3748;
  background-color: #f7fafc;
  line-height: 1.5;
}

h1, h2, h3 {
  font-weight: 800;
  color: #1a202c;
  letter-spacing: -0.025em;
}

.dashboard-container {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 20px;
}

/* Standard Header Card */
.page-header {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}