body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #fceabb, #f8b500);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  max-width: 400px;
  width: 100%;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

/* wspólne dla dwóch liczników */
.countdown {
  font-weight: bold;
  margin-bottom: 10px;
}

/* duży, główny licznik sekund */
.total-seconds {
  font-size: 64px;
  color: #222;
}

/* mniejszy breakdown dni/godz/min/sek */
.breakdown {
  font-size: 24px;
  color: #555;
}

/* przycisk (jeśli gdzieś używasz <button>) */
button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #0066cc;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color .3s;
}
button:hover {
  background-color: #0055aa;
}

/* prosty link do zmiany daty */
a {
  color: #0066cc;
  text-decoration: none;
  font-size: 14px;
}
a:hover {
  text-decoration: underline;
}

input {
  padding: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

#form-msg {
  height: 1.2em;
  font-size: 14px;
  color: red;
}
