/* ══════════════════════════════════════════════════════════════
   LA DISPENSA — FamilyPantry Design System
   Warm Trattoria Editorial Aesthetic
   ══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */

:root {
  --fp-green-900: #0f2318;
  --fp-green-800: #1b3a2c;
  --fp-green-700: #24503c;
  --fp-green-600: #2d6650;
  --fp-green-400: #4a8e6e;
  --fp-cream:      #f7f4ee;
  --fp-cream-dark: #ede8df;
  --fp-cream-bd:   #d4cdc0;
  --fp-terracotta: #c4623a;
  --fp-terra-lt:   #d9826a;
  --fp-gold:       #e8b84b;
  --fp-gold-dim:   #c49b32;
  --fp-gold-pale:  #f5e5b4;
  --fp-charcoal:   #2c2c2c;
  --fp-muted:      #8a8070;

  --sidebar-w:    260px;
  --topbar-h:     60px;
  --bottombar-h:  36px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', 'Helvetica Neue', sans-serif;
  --font-mono:    'Courier New', Courier, monospace;

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.28s var(--ease);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 4px 20px rgba(0,0,0,.11);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.17);
}

/* ─── Base reset ─────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: var(--font-body);
  background: var(--fp-cream);
  color: var(--fp-charcoal);
  height: 100%;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════════════
   APP SHELL
   ═══════════════════════════════════════════════════════════════ */

.fp-shell {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* ─── Sidebar ────────────────────────────────────────────────── */

.fp-sidebar {
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  background: var(--fp-green-800);
  background-image: linear-gradient(175deg, rgba(45,102,80,.18) 0%, rgba(0,0,0,.18) 100%);
  display: flex;
  flex-direction: column;
  transition: width var(--transition), min-width var(--transition);
  overflow: hidden;
  position: relative;
  z-index: 100;
  flex-shrink: 0;
}

.fp-sidebar.collapsed {
  width: 0;
  min-width: 0;
}

/* Brand */
.fp-sidebar-brand {
  padding: 22px 20px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  flex-shrink: 0;
}

.fp-brand-icon { font-size: 26px; line-height: 1; flex-shrink: 0; }

.fp-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fp-cream);
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1;
}

.fp-brand-name em {
  font-style: italic;
  color: var(--fp-gold);
}

/* Nav container */
.fp-nav {
  flex: 1;
  padding: 10px 0 10px;
  overflow-y: auto;
  overflow-x: hidden;
}

.fp-nav::-webkit-scrollbar { width: 3px; }
.fp-nav::-webkit-scrollbar-track { background: transparent; }
.fp-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 99px; }

/* Nav links */
.fp-nav-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 20px;
  color: rgba(247,244,238,.65);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: color 0.18s, background 0.18s, border-color 0.18s;
  white-space: nowrap;
  cursor: pointer;
}

.fp-nav-link:hover {
  color: var(--fp-cream);
  background: rgba(255,255,255,.065);
  border-left-color: rgba(232,184,75,.45);
}

.fp-nav-link.active {
  color: var(--fp-gold);
  background: rgba(232,184,75,.1);
  border-left-color: var(--fp-gold);
  font-weight: 700;
}

.fp-nav-icon {
  font-size: 1.05rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
}

.fp-nav-text { flex: 1; white-space: nowrap; }

/* Nav section label */
.fp-nav-section {
  padding: 14px 20px 4px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(247,244,238,.3);
  white-space: nowrap;
}

/* Sidebar footer decorative strip */
.fp-sidebar-deco {
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fp-sidebar-deco-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,184,75,.35), transparent);
}

.fp-sidebar-deco-leaf {
  font-size: 0.7rem;
  opacity: 0.35;
}

/* ─── Main Area ──────────────────────────────────────────────── */

.fp-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

/* ─── Topbar ─────────────────────────────────────────────────── */

.fp-topbar {
  height: var(--topbar-h);
  background: var(--fp-cream);
  border-bottom: 1px solid var(--fp-cream-bd);
  display: flex;
  align-items: center;
  padding: 0 18px;
  gap: 10px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  z-index: 50;
  position: relative;
}

.fp-topbar-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 38px; height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--fp-green-800);
  transition: background 0.18s;
  flex-shrink: 0;
}
.fp-topbar-toggle:hover { background: var(--fp-cream-dark); }

.fp-topbar-spacer { flex: 1; }

.fp-topbar-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fp-green-800);
  font-style: italic;
  opacity: 0.55;
}

.fp-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Icon button (theme / language) */
.fp-icon-btn {
  background: none;
  border: 1.5px solid var(--fp-cream-bd);
  border-radius: 9px;
  width: 38px; height: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--fp-green-800);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  transition: all 0.18s;
}
.fp-icon-btn:hover {
  border-color: var(--fp-green-700);
  background: var(--fp-cream-dark);
  color: var(--fp-green-700);
}

/* Avatar button */
.fp-avatar-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2.5px solid var(--fp-gold);
  background: var(--fp-green-800);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.fp-avatar-btn:hover {
  box-shadow: 0 0 0 4px rgba(232,184,75,.25);
  transform: scale(1.04);
}

.fp-avatar-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.fp-avatar-initials {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--fp-gold);
  font-family: var(--font-body);
  line-height: 1;
}

/* ─── User Menu Popup ─────────────────────────────────────────── */

.fp-user-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
}

.fp-user-menu {
  position: fixed;
  top: calc(var(--topbar-h) + 10px);
  right: 16px;
  width: 300px;
  background: var(--fp-cream);
  border: 1px solid var(--fp-cream-bd);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  overflow: hidden;
  animation: um-appear 0.22s var(--ease);
}

@keyframes um-appear {
  from { opacity: 0; transform: translateY(-10px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.fp-um-header {
  background: var(--fp-green-800);
  background-image: linear-gradient(135deg, var(--fp-green-700) 0%, var(--fp-green-900) 100%);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.fp-um-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--fp-gold);
  flex-shrink: 0;
}

.fp-um-avatar-placeholder {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 2.5px solid var(--fp-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fp-gold);
  font-family: var(--font-body);
  flex-shrink: 0;
}

.fp-um-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
  flex: 1;
}

.fp-um-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fp-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fp-um-role {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--fp-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fp-um-email {
  font-size: 0.72rem;
  color: rgba(247,244,238,.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fp-um-body {
  padding: 14px 16px;
  border-bottom: 1px solid var(--fp-cream-dark);
}

.fp-um-upload-label {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--fp-cream-dark);
  border: 1.5px dashed var(--fp-cream-bd);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fp-green-800);
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: all 0.18s;
}
.fp-um-upload-label:hover {
  border-color: var(--fp-green-600);
  background: var(--fp-cream-bd);
}

.fp-um-footer {
  padding: 12px 16px;
}

.fp-um-logout {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1.5px solid var(--fp-terracotta);
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fp-terracotta);
  cursor: pointer;
  width: 100%;
  justify-content: center;
  font-family: var(--font-body);
  transition: all 0.18s;
}
.fp-um-logout:hover {
  background: var(--fp-terracotta);
  color: white;
}

/* ─── Content Area ───────────────────────────────────────────── */

.fp-content {
  flex: 1;
  background: var(--fp-cream);
  overflow-y: auto;
  padding: 28px 32px;
  min-height: 0;
}

/* ─── Bottom Status Bar ──────────────────────────────────────── */

.fp-bottombar {
  height: var(--bottombar-h);
  min-height: var(--bottombar-h);
  background: var(--fp-green-900);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  flex-shrink: 0;
}

.fp-bb-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fp-bb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fp-gold);
  opacity: 0.65;
}

.fp-bb-user {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(247,244,238,.75);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fp-bb-sep {
  color: rgba(247,244,238,.2);
  font-size: 0.7rem;
}

.fp-bb-role {
  font-size: 0.65rem;
  color: rgba(232,184,75,.65);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.fp-clock {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--fp-gold);
  letter-spacing: 0.12em;
}

.fp-date {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(247,244,238,.55);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════
   DASHBOARD PAGE
   ═══════════════════════════════════════════════════════════════ */

.fp-page-header {
  margin-bottom: 28px;
}

.fp-page-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fp-green-800);
  margin: 0 0 4px 0;
  line-height: 1.15;
}

.fp-page-subtitle {
  font-size: 0.85rem;
  color: var(--fp-muted);
  margin: 0;
  font-weight: 400;
}

/* Stat grid */
.fp-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.fp-stat-card {
  background: white;
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid var(--fp-cream-bd);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.fp-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.fp-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--fp-stat-color, var(--fp-green-700));
  opacity: 0.6;
}

.fp-stat-card-green  { --fp-stat-color: var(--fp-green-700); }
.fp-stat-card-gold   { --fp-stat-color: var(--fp-gold); }
.fp-stat-card-terra  { --fp-stat-color: var(--fp-terracotta); }
.fp-stat-card-blue   { --fp-stat-color: #4a90d9; }

.fp-stat-icon-bg {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 2rem;
  opacity: 0.09;
  line-height: 1;
}

.fp-stat-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--fp-muted);
  margin-bottom: 10px;
}

.fp-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fp-stat-color, var(--fp-green-800));
  line-height: 1;
}

/* Section header */
.fp-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.fp-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fp-green-800);
  margin: 0;
}

.fp-section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--fp-cream-bd), transparent);
}

/* Expiry items */
.fp-expiry-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.fp-expiry-item {
  background: white;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid var(--fp-cream-bd);
  border-left: 4px solid var(--fp-expiry-color, var(--fp-cream-bd));
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.15s;
}
.fp-expiry-item:hover { transform: translateX(3px); }

.fp-expiry-item.urgent  { --fp-expiry-color: var(--fp-terracotta); }
.fp-expiry-item.warning { --fp-expiry-color: var(--fp-gold); }
.fp-expiry-item.ok      { --fp-expiry-color: var(--fp-green-400); }

.fp-expiry-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--fp-charcoal);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fp-expiry-meta {
  font-size: 0.72rem;
  color: var(--fp-muted);
  white-space: nowrap;
}

.fp-expiry-badge {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fp-expiry-color, var(--fp-muted));
  white-space: nowrap;
}

/* Quick actions */
.fp-quick-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fp-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.18s var(--ease);
  border: none;
  cursor: pointer;
  line-height: 1;
}

.fp-action-primary {
  background: var(--fp-green-800);
  color: var(--fp-cream);
}
.fp-action-primary:hover {
  background: var(--fp-green-700);
  box-shadow: 0 4px 16px rgba(27,58,44,.28);
  color: var(--fp-cream);
  text-decoration: none;
}

.fp-action-secondary {
  background: transparent;
  color: var(--fp-green-800);
  border: 1.5px solid var(--fp-cream-bd);
}
.fp-action-secondary:hover {
  border-color: var(--fp-green-700);
  background: var(--fp-cream-dark);
  text-decoration: none;
}

.fp-action-terra {
  background: var(--fp-terracotta);
  color: white;
}
.fp-action-terra:hover {
  background: var(--fp-terra-lt);
  box-shadow: 0 4px 16px rgba(196,98,58,.3);
}

/* Empty state */
.fp-empty {
  text-align: center;
  padding: 32px 20px;
  color: var(--fp-muted);
  font-size: 0.9rem;
}

.fp-empty-icon { font-size: 2.5rem; display: block; margin-bottom: 10px; opacity: 0.5; }

/* ═══════════════════════════════════════════════════════════════
   DARK MODE OVERRIDES (for shell)
   ═══════════════════════════════════════════════════════════════ */

.fp-dark .fp-topbar {
  background: #1a1a1a;
  border-bottom-color: rgba(255,255,255,.1);
}

.fp-dark .fp-content {
  background: #111;
}

.fp-dark .fp-topbar-toggle,
.fp-dark .fp-icon-btn {
  color: var(--fp-cream);
}

.fp-dark .fp-icon-btn {
  border-color: rgba(255,255,255,.15);
}

.fp-dark .fp-icon-btn:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.3);
}

.fp-dark .fp-topbar-title { color: var(--fp-cream); }

.fp-dark .fp-stat-card,
.fp-dark .fp-expiry-item {
  background: #1e1e1e;
  border-color: rgba(255,255,255,.1);
}

.fp-dark .fp-page-title,
.fp-dark .fp-section-title {
  color: #ffffff;
}

.fp-dark .fp-stat-label { color: rgba(247,244,238,.4); }
.fp-dark .fp-expiry-name { color: var(--fp-cream); }
.fp-dark .fp-expiry-meta { color: rgba(247,244,238,.4); }

.fp-dark .fp-um-body { border-bottom-color: rgba(255,255,255,.1); }
.fp-dark .fp-um-upload-label {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.2);
  color: var(--fp-cream);
}
.fp-dark .fp-user-menu {
  background: #1e1e1e;
  border-color: rgba(255,255,255,.12);
}

/* MudBlazor typography in dark mode — forza bianco su tutti i titoli */
.fp-dark .mud-typography-h1,
.fp-dark .mud-typography-h2,
.fp-dark .mud-typography-h3,
.fp-dark .mud-typography-h4,
.fp-dark .mud-typography-h5,
.fp-dark .mud-typography-h6,
.fp-dark .mud-typography-subtitle1,
.fp-dark .mud-typography-subtitle2,
.fp-dark .mud-table-cell,
.fp-dark .mud-table-head .mud-table-cell {
  color: #ffffff !important;
}

.fp-dark .mud-typography-body1,
.fp-dark .mud-typography-body2,
.fp-dark .mud-text {
  color: rgba(247,244,238,.85) !important;
}

/* Card e Paper in dark mode */
.fp-dark .mud-paper,
.fp-dark .mud-card {
  background-color: #1e1e1e !important;
  color: rgba(247,244,238,.85) !important;
}

/* Input fields in dark mode */
.fp-dark .mud-input-outlined .mud-input-outlined-border,
.fp-dark .mud-input-outlined .mud-input-slot {
  color: var(--fp-cream) !important;
}

/* Bottom status bar in dark mode */
.fp-dark .fp-bottombar {
  background: #1a1a1a;
  border-top-color: rgba(255,255,255,.1);
  color: rgba(247,244,238,.6);
}

/* ── PWA iOS Install Banner ── */
.fp-pwa-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    background: #1b5e20;
    color: #fff;
    font-size: 0.875rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,.25);
}

.fp-pwa-banner-text {
    flex: 1;
    line-height: 1.4;
}

.fp-pwa-share-icon {
    display: inline-block;
    font-size: 1rem;
    vertical-align: middle;
    margin: 0 2px;
}

.fp-pwa-banner-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity .2s;
}

.fp-pwa-banner-close:hover {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE TAB BAR
   ═══════════════════════════════════════════════════════════════ */

.fp-tab-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--fp-green-900);
  border-top: 1px solid rgba(255,255,255,.10);
  z-index: 200;
  flex-direction: row;
  align-items: stretch;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -2px 12px rgba(0,0,0,.18);
}

.fp-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  color: #aaa;
  transition: color 0.18s;
  min-height: 44px;
  padding: 6px 2px;
}

.fp-tab.active {
  color: #4CAF50;
}

.fp-tab-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.fp-tab-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE MOBILE (max 768px)
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .fp-tab-bar {
    display: flex;
  }

  .fp-sidebar {
    display: none !important;
  }

  .fp-topbar-toggle {
    display: none;
  }

  .fp-content {
    padding: 16px 14px;
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .fp-bottombar {
    display: none !important;
  }

  button, .fp-icon-btn, .fp-avatar-btn {
    min-height: 44px;
    min-width: 44px;
  }
}
