body {
  font-family: system-ui, sans-serif;
  margin: 2rem;
  text-align: center;
  background: #f9f9f9;
}

h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.dashboard-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.dash-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
  background-color: #007BFF;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
  min-width: 220px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.dash-btn:hover {
  background-color: #0056b3;
}

@media (max-width: 600px) {
  .dash-btn {
    width: 100%;
    font-size: 1rem;
  }
}
