/* ==========================================================================
   M4H PWA & Push - Production Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Front-end Mobile Navigation Bar
   -------------------------------------------------------------------------- */
.m4h-pwa-nav {
  position: fixed;
  z-index: 999999;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 18px rgba(15, 23, 42, 0.08);
}

.m4h-pwa-nav a,
.m4h-pwa-nav button {
  color: #334155;
  background: transparent;
  border: 0;
  text-decoration: none;
  min-width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 22px;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.m4h-pwa-nav a:hover,
.m4h-pwa-nav button:hover {
  color: #d9261c;
}

.m4h-pwa-nav svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.m4h-pwa-nav span {
  font: 500 11px/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@media (min-width: 850px) {
  .m4h-pwa-nav {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   2. Client Floating Push Notification Bell Widget
   -------------------------------------------------------------------------- */
.m4h-push-bell-widget {
  position: fixed;
  z-index: 999998;
  left: 20px;
  bottom: calc(50px + env(safe-area-inset-bottom));
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d9261c;
  color: #ffffff;
  border: 0;
  box-shadow: 0 8px 24px rgba(217, 38, 28, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, box-shadow 0.2s ease;
}

.m4h-push-bell-widget:hover {
  transform: scale(1.08);
  background: #b91c1c;
  box-shadow: 0 10px 28px rgba(217, 38, 28, 0.5);
}

.m4h-push-bell-widget:active {
  transform: scale(0.96);
}

.m4h-pwa-has-nav .m4h-push-bell-widget {
  bottom: calc(76px + env(safe-area-inset-bottom));
}

.m4h-bell-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid #ffffff;
}

.m4h-push-bell-widget.m4h-bell-subscribed .m4h-bell-badge {
  background: #22c55e;
}

/* --------------------------------------------------------------------------
   3. Front-end Feedback Toast
   -------------------------------------------------------------------------- */
.m4h-feedback-toast {
  position: fixed;
  z-index: 1000010;
  top: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.m4h-feedback-toast.m4h-toast-show {
  opacity: 1;
  transform: translateY(0);
}

.m4h-feedback-success {
  background: #10b981;
}

.m4h-feedback-error {
  background: #ef4444;
}

/* --------------------------------------------------------------------------
   4. Front-end Push Prompt Toast
   -------------------------------------------------------------------------- */
.m4h-pwa-prompt {
  position: fixed;
  z-index: 1000000;
  right: 16px;
  bottom: 16px;
  max-width: 360px;
  padding: 18px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #0f172a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.m4h-pwa-prompt.m4h-prompt-visible {
  opacity: 1;
  transform: translateY(0);
}

.m4h-pwa-has-nav .m4h-pwa-prompt {
  bottom: calc(76px + env(safe-area-inset-bottom));
}

.m4h-push-prompt-header strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.m4h-push-prompt-header span {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}

.m4h-push-prompt-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.m4h-push-prompt-buttons button {
  border: 0;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.m4h-pwa-allow {
  background: #d9261c;
  color: #ffffff;
}

.m4h-pwa-later {
  background: #f1f5f9;
  color: #334155;
}

/* --------------------------------------------------------------------------
   5. Front-end Mobile & Desktop Install Prompt Toast
   -------------------------------------------------------------------------- */
.m4h-pwa-install-prompt {
  position: fixed;
  z-index: 1000001;
  left: 14px;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  max-width: 480px;
  margin: 0 auto;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  box-shadow: 0 16px 40px -8px rgba(15, 23, 42, 0.22);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.m4h-pwa-install-prompt.m4h-pwa-visible {
  opacity: 1;
  transform: translateY(0);
}

.m4h-pwa-install-prompt.m4h-pwa-hiding {
  opacity: 0;
  transform: translateY(20px);
}

.m4h-pwa-has-nav .m4h-pwa-install-prompt {
  bottom: calc(76px + env(safe-area-inset-bottom));
}

.m4h-prompt-content-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.m4h-prompt-icon-col {
  flex-shrink: 0;
}

.m4h-prompt-icon-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.m4h-prompt-icon-fallback {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #d9261c, #b91c1c);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(217, 38, 28, 0.3);
}

.m4h-prompt-text-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.m4h-prompt-text-col strong {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m4h-prompt-text-col span {
  font-size: 12px;
  color: #64748b;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.m4h-prompt-action-cols {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.m4h-pwa-install-now {
  background: #d9261c;
  color: #ffffff;
  border: 0;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(217, 38, 28, 0.25);
  transition: background 0.2s ease, transform 0.15s ease;
}

.m4h-pwa-install-now:hover {
  background: #c01e15;
  transform: translateY(-1px);
}

.m4h-pwa-install-now:active {
  transform: translateY(0);
}

.m4h-pwa-install-close {
  background: #f1f5f9;
  color: #64748b;
  border: 0;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.m4h-pwa-install-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* --------------------------------------------------------------------------
   6. iOS Installation Guide Modal
   -------------------------------------------------------------------------- */
.m4h-ios-guide-modal {
  position: fixed;
  inset: 0;
  z-index: 1000005;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.m4h-ios-guide-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: m4hFadeIn 0.2s ease;
}

.m4h-ios-guide-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: m4hSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #0f172a;
}

.m4h-ios-guide-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f1f5f9;
  border: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m4h-ios-guide-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-right: 24px;
}

.m4h-ios-app-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
}

.m4h-ios-app-icon-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #d9261c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m4h-ios-guide-header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
}

.m4h-ios-guide-header p {
  margin: 2px 0 0 0;
  font-size: 13px;
  color: #64748b;
}

.m4h-ios-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.m4h-ios-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #334155;
  background: #f8fafc;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
}

.m4h-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #d9261c;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.m4h-inline-svg {
  display: inline-block;
  vertical-align: sub;
  color: #d9261c;
  margin: 0 2px;
}

.m4h-ios-guide-done {
  width: 100%;
  background: #d9261c;
  color: #ffffff;
  border: 0;
  border-radius: 12px;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.m4h-ios-guide-done:hover {
  background: #c01e15;
}

@keyframes m4hFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes m4hSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   7. WP Admin Production-Grade Styles
   -------------------------------------------------------------------------- */
.m4h-pwa-admin-wrap {
  max-width: 1080px;
  margin: 20px 20px 40px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1e293b;
}

.m4h-pwa-admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  margin-bottom: 24px;
}

.m4h-pwa-admin-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.m4h-pwa-brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d9261c, #991b1b);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(217, 38, 28, 0.25);
}

.m4h-pwa-admin-brand h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.m4h-pwa-admin-brand p {
  margin: 4px 0 0 0;
  font-size: 13px;
  color: #64748b;
}

.m4h-pwa-version-badge {
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

/* Admin Tabs Navigation */
.m4h-pwa-tabs-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 8px;
}

.m4h-tab-btn {
  background: transparent;
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.m4h-tab-btn:hover {
  background: #f8fafc;
  color: #0f172a;
}

.m4h-tab-btn.active {
  background: #d9261c;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(217, 38, 28, 0.2);
}

/* Tab Content */
.m4h-pwa-tab-content {
  display: none;
}

.m4h-pwa-tab-content.active {
  display: block;
}

/* Admin Cards */
.m4h-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.m4h-card h3 {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.m4h-card h4 {
  margin: 0 0 12px 0;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.m4h-field-group {
  margin-bottom: 20px;
}

.m4h-field-group:last-child {
  margin-bottom: 0;
}

.m4h-field-group label {
  display: block;
  margin-bottom: 6px;
  color: #334155;
}

.m4h-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .m4h-grid-2 {
    grid-template-columns: 1fr;
  }
}

.m4h-divider {
  border: 0;
  height: 1px;
  background: #e2e8f0;
  margin: 24px 0;
}

/* --------------------------------------------------------------------------
   8. Status Banner & Stats in Admin
   -------------------------------------------------------------------------- */
.m4h-status-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 13px;
}

.m4h-status-ok {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.m4h-status-warn {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

.m4h-status-banner p {
  margin: 2px 0 0 0;
  font-size: 12px;
  line-height: 1.4;
}

.m4h-stats-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.m4h-stat-box {
  display: flex;
  flex-direction: column;
}

.m4h-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #d9261c;
  line-height: 1;
}

.m4h-stat-title {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   9. Custom Switch Toggle Styling
   -------------------------------------------------------------------------- */
.m4h-switch-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  cursor: pointer !important;
  user-select: none !important;
  position: relative !important;
  margin: 0 0 8px 0 !important;
  padding: 0 !important;
  vertical-align: middle !important;
}

.m4h-switch-label input[type="checkbox"],
.m4h-switch-label input[type="checkbox"]:focus {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
}

.m4h-switch-slider {
  display: inline-block !important;
  width: 48px !important;
  min-width: 48px !important;
  height: 26px !important;
  background-color: #cbd5e1 !important;
  border-radius: 26px !important;
  position: relative !important;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
  vertical-align: middle !important;
}

.m4h-switch-slider::after {
  content: "" !important;
  position: absolute !important;
  top: 3px !important;
  left: 3px !important;
  width: 20px !important;
  height: 20px !important;
  background-color: #ffffff !important;
  border-radius: 50% !important;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.25) !important;
}

.m4h-switch-label input[type="checkbox"]:checked+.m4h-switch-slider {
  background-color: #d9261c !important;
}

.m4h-switch-label input[type="checkbox"]:checked+.m4h-switch-slider::after {
  transform: translateX(22px) !important;
}

.m4h-switch-label strong {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  line-height: 1.4 !important;
  display: inline-block !important;
  vertical-align: middle !important;
  margin: 0 !important;
}

/* --------------------------------------------------------------------------
   10. Favicon & App Icon Uploader
   -------------------------------------------------------------------------- */
.m4h-icon-uploader {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f8fafc;
  padding: 16px;
  border-radius: 12px;
  border: 1px dashed #cbd5e1;
}

.m4h-icon-preview {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m4h-icon-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m4h-icon-placeholder {
  color: #94a3b8;
}

.m4h-icon-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.m4h-icon-controls button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --------------------------------------------------------------------------
   11. Navigation Items Table Styling
   -------------------------------------------------------------------------- */
.m4h-table {
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: none !important;
  margin-bottom: 16px !important;
}

.m4h-table th {
  background: #f8fafc !important;
  color: #475569 !important;
  font-weight: 700 !important;
  padding: 12px 14px !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.m4h-table td {
  padding: 10px 14px !important;
  vertical-align: middle !important;
}

.m4h-table input[type="text"],
.m4h-table select {
  border: 1px solid #cbd5e1 !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  font-size: 13px !important;
  width: 100% !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease !important;
}

.m4h-table input[type="text"]:focus,
.m4h-table select:focus {
  border-color: #d9261c !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(217, 38, 28, 0.15) !important;
}

.m4h-remove-navigation-item {
  color: #ef4444 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  padding: 4px 8px !important;
  border-radius: 6px !important;
  transition: background 0.2s ease !important;
}

.m4h-remove-navigation-item:hover {
  background: #fee2e2 !important;
  color: #b91c1c !important;
}

/* --------------------------------------------------------------------------
   12. Live Toast Preview Box
   -------------------------------------------------------------------------- */
.m4h-preview-box {
  background: #f8fafc;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e2e8f0;
  margin-top: 20px;
}

.m4h-preview-box h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475569;
}

.m4h-toast-demo {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 440px;
}

.m4h-toast-demo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #d9261c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m4h-toast-demo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m4h-toast-demo-body {
  flex: 1;
}

.m4h-toast-demo-title {
  font-weight: 700;
  font-size: 13px;
  color: #0f172a;
}

.m4h-toast-demo-desc {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}

.m4h-toast-demo-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.m4h-demo-btn-install {
  background: #d9261c;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.m4h-demo-btn-close {
  background: #f1f5f9;
  color: #64748b;
  border: 0;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
}

/* Submit bar */
.m4h-pwa-submit-bar {
  margin-top: 24px;
}