body {
  font-family: Arial, sans-serif;
  background-color: #f4f6f8;
  margin: 0;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
}

.dashboard {
  max-width: 800px;
  width: 100%;
}

.dashboard h2 {
  text-align: left;
  font-size: 22px;
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 6px;
  margin: 40px 0 20px 0;
  max-width: 100%;
}


.button-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button-list li {
  min-width: 160px;
}


.button-list li a {
  display: inline-block;
  padding: 12px 24px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 140px;
  text-align: center;
}

.button-list li a:hover {
  background-color: #2980b9;
  transform: scale(1.05);
}
