/* src/client/styles.css */
body {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #999;
  background-color: black;
  text-align: center;
  padding-top: 40px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: sans-serif;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
#app {
  padding: 1rem;
}
h1 {
  color: white;
}
b {
  color: white;
  font-weight: bold;
}
a {
  color: #ccc;
  text-decoration-line: underline;
  text-underline-offset: 3px;
  text-decoration-color: #555;
}
.speed-control {
  position: fixed;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  backdrop-filter: blur(4px);
}
.speed-control input[type=range] {
  width: 150px;
  -webkit-appearance: none;
  background: transparent;
}
.speed-control input[type=range]::-webkit-slider-runnable-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}
.speed-control input[type=range]::-moz-range-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}
.speed-control input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
  margin-top: -4px;
  cursor: pointer;
}
.speed-control input[type=range]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.weather-bar {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}
.weather-icon {
  display: inline-block;
  margin-right: 0.25rem;
  font-size: 1.5rem;
  vertical-align: middle;
  animation: weather-pop 0.4s ease forwards;
  transition: transform 0.2s ease;
}
.weather-bar:hover .weather-icon {
  animation: weather-bounce 0.4s ease;
}
@keyframes weather-pop {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes weather-bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
/*# sourceMappingURL=index.css.map */
