body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f7fa;
  color: #222;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

h1 {
  text-align: center;
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #28282B;
}

.button-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

@media (min-width: 600px) {
  .button-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dash-button {
  display: inline-block;
  align-items: center;
  background-color: green;
  color: white;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  transition: background 0.3s ease;
}

.dash-button:hover {
  background-color: #333;
}
