.kbody {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  color: #222;
}

.alarm-container {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  width: 320px;
}

.jh1 {
  font-size: 1.6em;
  margin-bottom: 20px;
  color: #111;
}

#clock {
  font-size: 2.2em;
  font-weight: bold;
  margin: 20px 0;
  color: #333;
  letter-spacing: 2px;
}

.alarm-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alarm-form label {
  font-size: 0.9em;
  color: #555;
  text-align: left;
}

input[type="time"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  color: #333;
  background: #fafafa;
}

button {
  padding: 10px;
  border: none;
  border-radius: 6px;
  background: #333;
  color: white;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #555;
}

#status {
  margin-top: 15px;
  font-size: 0.95em;
  color: #444;
}

#stopAlarm {
  margin-top: 15px;
  background: #900;
}

#stopAlarm:hover {
  background: #b00;
}