body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #000000;
}

.container {
  text-align: center;
  background: rgb(9, 8, 8);
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 20px 40px;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1);
  display: flexbox;
  align-items: center;
}

#timer {
  font-size: 4rem;
  color: #f8f6f6;
  margin-bottom: 30px;
}

.buttons button {
  font-size: 1.2rem;
  padding: 10px 20px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#startButton {
  background-color: #4caf50;
  color: white;
}

#stopButton {
  background-color: #f44336;
  color: white;
}

#resetButton {
  background-color: aqua;
  color: white;
}
.buttons button:hover {
  opacity: 0.9;
}

#status {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 70px; /* Set the width of the box */
  height: 28px; /* Set the height of the box */
  background-color: #11f5bc7f; /* Background color of the box */
  border: 1px solid #000000; /* Optional border */
  border-radius: 15px; /* Creates the rounded corners */
  font-size: 16px; /* Adjust font size */
  color: #eadede; 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute; /* Position relative to the container */
  top: 51%; /* Pushes the box down halfway */
  left: 50%; /* Pushes the box right halfway */
  transform: translate(-50%, -50%); /* Centers the box exactly */
}