/* CRM PWA install banner */
.crm-pwa-install {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #123222;
  color: #f5faf7;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.crm-pwa-install__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 180px;
}

.crm-pwa-install__copy strong {
  font-size: 0.9375rem;
  font-weight: 700;
}

.crm-pwa-install__copy span {
  font-size: 0.8125rem;
  color: rgba(245, 250, 247, 0.78);
  line-height: 1.35;
}

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

.crm-pwa-install__btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  background: #7dce9a;
  color: #0f1f14;
  cursor: pointer;
}

.crm-pwa-install__dismiss {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(245, 250, 247, 0.72);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 6px;
}

@media (min-width: 640px) {
  .crm-pwa-install {
    left: auto;
    right: 20px;
    bottom: 20px;
    width: min(420px, calc(100vw - 40px));
  }
}
