* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.container {
  text-align: center;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #666;
  transition: background-color 0.3s ease;
}

.status-indicator.moving {
  background-color: #0f0;
}

.status-indicator.stopped {
  background-color: #f00;
}

.location-display {
  width: 100%;
  padding: 20px;
}

.location-text {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

.btn {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 15px 40px;
  font-size: 1.2rem;
  cursor: pointer;
  font-family: inherit;
  text-transform: lowercase;
  transition: all 0.2s ease;
}

.btn:active {
  background-color: #fff;
  color: #000;
}

.status {
  font-size: 0.9rem;
  color: #999;
}

/* Optimización para móvil */
@media (max-width: 768px) {
  .location-text {
    font-size: 1.8rem;
  }
  
  .btn {
    font-size: 1rem;
    padding: 12px 35px;
  }
}

@media (max-width: 480px) {
  .location-text {
    font-size: 1.5rem;
  }
}