body {
  font-family: Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #0b1628, #0e1c34);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stopwatch-container {
  text-align: center;
  background-color: #1b2638;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  color: white;
  min-width: 300px;
}

#display {
    font-size: 3rem;
    margin: 20px 0;
}

.buttons button {
  padding: 10px 22px;
  margin: 6px;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  background: #4f46e5;
  color: white;
}

.buttons button:hover {
  background: #6366f1;
}

#laps {
    margin-top: 20px;
    list-style-type: none;
    padding: 0;
}

#laps li {
    background-color: #ffdde0; /* light pink for lap items */
    margin: 5px 0;
    padding: 8px;
    border-radius: 5px;
    color: black;
}
.page-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-title h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-title p {
  font-size: 16px;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
}
.stopwatch-container {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
#display {
  font-size: 3rem;
  margin: 20px 0;
  color: #ffffff;
}

.stopwatch-container h1 {
  color: white;
}