/* Push notification soft-ask banner */
#ayio-push-prompt {
  position: fixed;
  bottom: -140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 32px);
  max-width: 520px;
  transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#ayio-push-prompt.visible {
  bottom: 24px;
}
.push-prompt-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #0f172a;
  border: 1px solid rgba(13,148,136,0.3);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.push-prompt-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.push-prompt-text {
  flex: 1;
  min-width: 0;
}
.push-prompt-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.3;
}
.push-prompt-text span {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
  line-height: 1.3;
}
.push-prompt-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.push-prompt-btn {
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
}
.push-prompt-btn:hover {
  opacity: 0.85;
}
.push-prompt-btn:active {
  transform: scale(0.97);
}
.push-prompt-btn:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 2px;
}
.push-prompt-yes {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff;
}
.push-prompt-no {
  background: transparent;
  color: #64748b;
  padding: 8px 10px;
}
/* Mobile: stack vertically */
@media (max-width: 480px) {
  #ayio-push-prompt {
    width: calc(100% - 24px);
  }
  .push-prompt-inner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 16px;
  }
  .push-prompt-text {
    flex: 1 1 calc(100% - 58px);
  }
  .push-prompt-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Settings page push toggle */
.settings-desc {
  color: #94a3b8;
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.5;
}
#push-settings-container .text-muted {
  color: #64748b;
  font-size: 13px;
}
