/* CSS Version as of 25/08/2025 16:54 */
.pace-section {
  background: #3aafa9;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.pace-wrapper {
  background: #17252a;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 100%;
  text-align: center;
  animation: fadeIn 0.6s ease-in-out;
}

.pace-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.pace-wrapper p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #f5f5f5;
}

.pace-wrapper label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  text-align: left;
}

.pace-wrapper input,
.pace-wrapper select {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.5rem;
  border-radius: 6px;
  border: none;
  background: #f5f5f5;
  color: #17252a;
  font-weight: bold;
}

.pace-wrapper button {
  background-color: #0b918a;
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  margin-top: 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pace-wrapper button:hover {
  background-color: #fff;
  color: #0b918a;
}

#result {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #f5f5f5;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}