body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  padding: 20px;
  margin: 0;
}

/* Buttons */
button {
  padding: 10px 20px;
  margin-right: 10px;
  font-size: 16px;
  background: #0078ff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #005fcc;
}

/* Status + Timer */
#status {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

#timer {
  font-size: 28px;
  font-weight: bold;
  color: #0077ff;
  margin-bottom: 20px;
}

/* Navigation Bar */
.topnav {
  background: #0078ff;
  padding: 10px;
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.topnav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
}

.topnav a:hover {
  background: #005fcc;
}
