/* Summary Page */
.summary-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.summary-header {
  text-align: center;
  margin-bottom: 28px;
}

.summary-title {
  margin: 0;
  font-size: 34px;
  color: #1f1f1f;
}

.summary-subtitle {
  margin-top: 8px;
  color: #5d6470;
  font-size: 16px;
}

.summary-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.summary-card {
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 20px;
  background: #f9f9f9;
  text-align: center;
}

.summary-card h2 {
  margin: 0;
  font-size: 18px;
  color: #2d3640;
}

.summary-card.todo {
  background: #faf8e4;
}

.summary-card.in-progress {
  background: #eef5ff;
}

.summary-card.done {
  background: #e9f8ea;
}

.summary-count {
  margin: 12px 0 0;
  font-size: 44px;
  font-weight: 700;
  color: #1f1f1f;
}

.summary-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.summary-button {
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  padding: 12px 26px;
  font-weight: 600;
}

.summary-button:hover {
  background: #0056b3;
}