body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  margin: 0;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}

.container {
  margin-top: 100px;
  margin-bottom: 100px;
}

.task-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: auto;
}

.task-card {
  background: white;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.2s ease;
}

.task-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.task-info {
  flex-grow: 1;
}

.task-title {
  font-size: 1.1em;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

.task-desc {
  font-size: 0.95em;
  color: #666;
}

.task-score {
  font-weight: bold;
  background: #28a745;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9em;
  white-space: nowrap;
}

.task-score.partial {
  background: #ffc107;
  color: black;
}

.task-score.none {
  background: #6c757d;
}

a.task-link {
  text-decoration: none;
  color: inherit;
}
