/* style.css */

body {
  font-family: 'Inter', sans-serif;
  transition: background 0.3s, color 0.3s;
}

.dark-mode {
  background-color: #1a202c;
  color: #fff;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

#calendar table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

#calendar th,
#calendar td {
  padding: 8px;
  border: 1px solid #ccc;
}

#calendar td.highlight {
  background-color: #facc15;
  font-weight: bold;
  border: 2px solid #eab308;
}

#age-output div {
  background-color: #e0f2fe;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#festival-list li::before {
  content: "🎊 ";
}

button {
  transition: background 0.2s;
}
