/* Mobilscooter PWA - improved style */

/* Installeringsknap */
.mobilscooter-install-btn {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #0b4d91 0%, #007bff 100%) !important;
  color: #fff !important;
  padding: 15px 35px;
  border: none !important;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  cursor: pointer;
  opacity: 1 !important;
  transition: all 0.3s ease;
  animation: slideUp 0.8s ease both;
}

.mobilscooter-install-btn:hover {
  background: linear-gradient(180deg, #007bff 0%, #0b4d91 100%) !important;
  transform: translateX(-50%) scale(1.05);
}

/* Fade/slide-in animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 30px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Offline overlay */
.offline-overlay {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(11, 77, 145, 0.95);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
