/* style.css */
body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  margin: 0;
  padding: 24px;
}

.container {
  max-width: 700px;
  margin: 0 auto;
}

h1 {
  margin-bottom: 20px;
}

.actions {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

button {
  border: none;
  background: #222;
  color: white;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}

#events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card {
  background: white;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 16px;
  cursor: grab;
}

.card.correct {
  background: #d4edda;
  border-color: #28a745;
}

.card.wrong {
  background: #f8d7da;
  border-color: #dc3545;
}

.title {
  font-size: 18px;
  font-weight: bold;
}

.date {
  margin-top: 8px;
  color: #555;
  display: none;
}

.card.show-date .date {
  display: block;
}
