body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f3f6f8;
  color: #1d2226;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background-color: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 90%;
}

h1 {
  color: #0073b1;
  margin-bottom: 24px;
}

.timer {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #333;
}

.controls button {
  font-size: 16px;
  padding: 8px 16px;
  margin: 0 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background-color: #0073b1;
  color: white;
  transition: background-color 0.3s ease;
}

.controls button:hover {
  background-color: #005582;
}

.status, .cycles {
  font-size: 16px;
  font-weight: 600;
  color: #555;
}

.status {
  margin-top: 20px;
}