body {
  margin: 0;
  background-color: black;
  color: lime;
  font-family: 'Digital-7 Mono', monospace;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

#utc {
  font-size: 2.5vw;
  margin-bottom: 10px;
  color: cyan;
}

.clock {
  font-size: 15vw;
  letter-spacing: 1vw;
  text-shadow: 0 0 20px lime, 0 0 30px lime;
}

.date {
  font-size: 2vw;
  margin-top: 25px; /* zamiast 10px */
  color: #aaa;
  font-family: 'Roboto', sans-serif;
}

@media (max-width: 600px) {
  .clock {
    font-size: 20vw;
    letter-spacing: 1vw;
}
.date {
  font-size: 4vw;
  margin-top: 15px; /* jeszcze większy odstęp na telefonie */
}

  #utc {
    font-size: 4vw;
  }

  .form-row {
    flex-direction: column;
    gap: 5px;
  }

  .form-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.controls {
  margin-top: 30px;
}

.controls label {
  font-size: 1.1em;
  margin-top: 10px;
  display: block;
  color: #0f0;
}

.controls input,
.controls select,
.controls button {
  font-size: 1.1em;
  padding: 8px 12px;
  margin: 5px;
  border: 1px solid #0f0;
  background-color: #000;
  color: #0f0;
  border-radius: 5px;
  transition: 0.2s ease-in-out;
}

.controls input:focus,
.controls select:focus {
  outline: none;
  box-shadow: 0 0 10px #0f0;
}

.controls button:hover {
  background-color: #0f0;
  color: #000;
  cursor: pointer;
}

#alarmList {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  color: white;
}

#alarmList li {
  margin: 5px 0;
}

#alarmList button {
  margin-left: 10px;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-row label {
  margin: 0 5px;
}
