/*
 * Copyright (c) 2026 PunchMapPro (punchmappro.com). All rights reserved.
 * Unauthorized copying, modification, or distribution of this file is strictly prohibited.
 * Proprietary and confidential.
 */

    #pwa-install-banner, #pwa-update-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #12141a 0%, #0a1a1f 100%);
  border-top: 1px solid #00e5ff40;
  padding: 12px 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  animation: pwa-slide-up 0.3s ease;
}

@keyframes pwa-slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.pwa-banner-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pwa-banner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pwa-banner-text strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.pwa-banner-text span {
  color: #8899aa;
  font-size: 12px;
}

.pwa-banner-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

#pwa-install-btn, #pwa-update-btn {
  background: #00e5ff;
  color: #0a0a0c;
  border: 0;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 850;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.12s;
}

#pwa-install-btn:hover, #pwa-update-btn:hover {
  background: #33ecff;
}

#pwa-dismiss-btn, #pwa-update-banner button:last-child {
  background: transparent;
  border: 1px solid #2a3040;
  color: #8899aa;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.12s;
}

#pwa-dismiss-btn:hover, #pwa-update-banner button:last-child:hover {
  border-color: #00e5ff;
  color: #00e5ff;
}
