/* EarnWorkers PWA - Install Popup & Update Banner Styles */

.ew-install-popup {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: -120px;
  z-index: 99999;
  transition: bottom 0.35s ease;
  max-width: 420px;
  margin: 0 auto;
}
.ew-install-popup.ew-show {
  bottom: 16px;
}
.ew-install-card {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  font-family: -apple-system, Segoe UI, Roboto, sans-serif;
}
.ew-install-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}
.ew-install-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: #fff;
}
.ew-install-text strong {
  font-size: 14px;
  margin-bottom: 2px;
}
.ew-install-text span {
  font-size: 12px;
  color: #9ca3af;
}
.ew-install-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ew-btn-install {
  background: linear-gradient(135deg,#22c55e,#16a34a);
  color: #06210f;
  border: none;
  padding: 9px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.ew-btn-close {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

/* Update banner */
.ew-update-banner {
  position: fixed;
  top: -80px;
  left: 12px;
  right: 12px;
  max-width: 420px;
  margin: 0 auto;
  z-index: 99999;
  background: #1e293b;
  color: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: top 0.35s ease;
}
.ew-update-banner.ew-show {
  top: 16px;
}
.ew-update-banner button {
  background: #22c55e;
  color: #06210f;
  border: none;
  padding: 7px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}
