body {
  font-family: 'Helvetica Neue', sans-serif;
  background: linear-gradient(to right, #fefefe, #f3f4f6);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 700px;
  padding: 2rem;
  margin: auto;
  background-color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
}

header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 0.5rem;
  text-align: center;
}

.intro {
  font-size: 1.15rem;
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

main {
  text-align: center;
}

#timer {
  font-size: 4rem;
  color: #e53935;
  margin: 1rem 0;
  font-weight: bold;
}

#status {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

button {
  font-size: 1rem;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

#start:hover {
  background-color: #43a047;
}

#reset {
  background-color: #f1f1f1;
  color: #888;
}

#reset:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#reset:hover:enabled {
  background-color: #e0e0e0;
  color: #555;
}

.explanation {
  margin-top: 3rem;
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.explanation h2 {
  font-size: 1.8rem;
  color: #e53935;
  margin-bottom: 1rem;
}


.date {
font-family: 'Satisfy'

  font-size: 1.2rem;
  color: #999;
  text-align: center;
  margin-bottom: 0.5rem;
}

.tomato-trail {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.tomato-trail .big {
  font-size: 2.5rem;
  display: inline-block;
  margin: 0 0.2rem;
}

.tomato-trail .small {
  font-size: 1.5rem;
  opacity: 0.8;
  display: inline-block;
  margin: 0 0.1rem;
}

.stats-link {
  margin-top: 1.5rem;
  text-align: center;
}

.stats-link a {
  text-decoration: none;
  font-size: 1rem;
  color: #4caf50;
  font-weight: 500;
}

.stats-link a:hover {
  text-decoration: underline;
}


.progress-bar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem auto 1.5rem;
  max-width: 80%;
  font-size: 0.9rem;
  color: #888;
}

.progress-bar-wrapper span {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.progress-container {
  width: 100%;
  height: 12px;
  background-color: #eee;
  border-radius: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background-color: #e53935;
  transition: width 1s linear;
}

