.stopwatch-container {
  text-align: center;
  margin: 0 0 60px;
}

#timer {
  font-size: 2.5rem !important;
  font-weight: bold;
  margin: 10px 0;
  transition: transform 0.2s ease-in-out;
}

.running {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* General Button Styling */
button {
  padding: 12px 18px;
  font-size: 0.8rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

/* Start Button - Green */
#startButton {
  background-color: #28a745; /* Green */
  color: white;
}

#startButton:hover {
  background-color: #218838;
  transform: scale(1.05);
}

/* Reset Button - Red */
#resetButton {
  background-color: #000000; /* Red */
  color: white;
}

#resetButton:hover {
  background-color: #4a4a4a;
  transform: scale(1.05);
}

.check-container {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  color: #1350a0;
  font-weight: bold;
}

.check-container input {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
}

body.dark-mode .check-container {
  color: var(--darkmodeTopper);
}
