/* ====================================================================
   MetricVault AI - Mobile Responsive CSS
   Comprehensive mobile-first responsive design
   Supports: Mobile (< 768px), Tablet (768px - 1024px), Desktop (> 1024px)
   ==================================================================== */

/* ====================================================================
   ROOT & THEME VARIABLES - Light & Dark Mode Support
   ==================================================================== */
:root {
  --sidebar-w: 312px;
  --rail-w: 72px;
  --panel-w: 240px;
  --top-bar-h: 60px;
  --mobile-sidebar-h: 50px;

  /* Light theme colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --border-color: #e0e0e0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"]:root,
[data-theme="dark"] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --border-color: #404040;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #404040;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  }
}

/* ====================================================================
   MOBILE-FIRST BASE STYLES (Mobile < 768px)
   ==================================================================== */

* {
  box-sizing: border-box;
}

/* Base styles scoped to dashboard/admin pages only */
body.dashboard-body,
body.admin-body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ====================================================================
   BODY LAYOUT - Sidebar Hamburger Menu on Mobile
   ==================================================================== */

/* Body flex layout only for dashboard/admin pages with sidebar */
body.dashboard-body,
body.admin-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Sidebar hidden by default on mobile, positioned fixed/overlay */
.sidebar {
  position: fixed;
  top: var(--mobile-sidebar-h);
  left: -100%;
  width: 80vw;
  max-width: 280px;
  height: calc(100vh - var(--mobile-sidebar-h));
  background-color: var(--bg-primary);
  border-right: 1px solid var(--border-color);
  overflow-y: auto;
  z-index: 999;
  transition: left 0.3s ease;
  box-shadow: var(--shadow-lg);
}

/* Show sidebar when active */
.sidebar.active {
  left: 0;
}

.sidebar-logo {
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Navigation items */
.nav-group {
  padding: 12px 0;
}

.nav-group-title {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-item {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-item:hover {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

.nav-item.active {
  border-left-color: #2563eb;
  color: #2563eb;
  background-color: rgba(37, 99, 235, 0.05);
}

.nav-item icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ====================================================================
   TOP BAR - Mobile Responsive
   ==================================================================== */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--mobile-sidebar-h);
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 1000;
  box-shadow: var(--shadow);
  gap: 8px;
}

.hamburger-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 24px;
  transition: background-color 0.2s ease;
}

.hamburger-menu:active {
  background-color: var(--bg-secondary);
  border-radius: 8px;
}

.hamburger-menu span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  height: 18px;
}

.hamburger-menu span div {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span div:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span div:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span div:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Top bar search - full width on mobile */
.top-bar-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.top-bar-search input {
  flex: 1;
  height: 36px;
  padding: 6px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease;
  min-width: 0;
}

.top-bar-search input::placeholder {
  color: var(--text-secondary);
}

.top-bar-search input:focus {
  border-color: #2563eb;
  background-color: var(--bg-primary);
}

/* Top bar buttons */
.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
}

.top-bar-btn:active {
  background-color: #2563eb;
  color: white;
  border-color: #2563eb;
}

/* ====================================================================
   MAIN CONTENT AREA
   ==================================================================== */

.main-content {
  flex: 1;
  margin-top: var(--mobile-sidebar-h);
  padding: 12px;
  overflow-y: auto;
}

.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

/* ====================================================================
   STAT CARDS & GRIDS - Mobile Single Column
   ==================================================================== */

.stat-grid, .stats-row, .overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.stat-card, .card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-card:active {
  box-shadow: var(--shadow-lg);
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-change {
  font-size: 12px;
  font-weight: 500;
}

.stat-change.positive {
  color: #16a34a;
}

.stat-change.negative {
  color: #dc2626;
}

/* ====================================================================
   DATA TABLE - Horizontally Scrollable on Mobile
   ==================================================================== */

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.data-table thead {
  background-color: var(--bg-secondary);
  border-bottom: 2px solid var(--border-color);
}

.data-table th {
  padding: 12px 8px;
  text-align: left;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.data-table td {
  padding: 12px 8px;
  border-bottom: 1px solid var(--border-color);
  word-break: break-word;
  color: var(--text-primary);
}

.data-table tbody tr:hover {
  background-color: var(--bg-secondary);
}

/* Table wrapper for horizontal scroll */
.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}

.table-wrapper table {
  margin: 0;
  min-width: 100%;
}

/* ====================================================================
   FORMS - Mobile Responsive
   ==================================================================== */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder {
  color: var(--text-secondary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ====================================================================
   BUTTONS - Mobile Touch-Friendly
   ==================================================================== */

button, .btn {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

button:active, .btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-secondary {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
}

.btn-danger {
  background-color: #dc2626;
  color: white;
}

.btn-danger:hover {
  background-color: #b91c1c;
}

.btn-small {
  padding: 6px 12px;
  font-size: 12px;
  min-height: auto;
}

/* ====================================================================
   MODALS - Full Screen on Mobile
   ==================================================================== */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow-y: auto;
  animation: fadeIn 0.2s ease;
}

.modal.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: var(--bg-primary);
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  margin-bottom: 16px;
}

.modal-footer {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* ====================================================================
   AUTH OVERLAY & CARD
   ==================================================================== */

.auth-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.auth-overlay.active {
  display: flex;
}

.auth-card {
  background-color: var(--bg-primary);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
}

.auth-card h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  text-align: center;
}

.auth-card p {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin: 0 0 24px 0;
}

/* ====================================================================
   PWA INSTALL BANNER
   ==================================================================== */

.pwa-install-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 12px;
  z-index: 500;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
}

.pwa-install-banner.active {
  display: flex;
}

.pwa-install-content {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.pwa-install-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.pwa-install-text {
  flex: 1;
  min-width: 0;
}

.pwa-install-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.pwa-install-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 2px 0 0 0;
}

.pwa-install-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.pwa-install-actions button {
  padding: 6px 12px;
  font-size: 12px;
  min-height: 36px;
}

/* ====================================================================
   CHAT WIDGET - Responsive
   ==================================================================== */

.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #2563eb;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.chat-toggle:active {
  transform: scale(0.95);
}

.chat-window {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 100vw;
  max-width: 380px;
  height: 500px;
  background-color: var(--bg-primary);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  flex-direction: column;
  animation: slideUp 0.3s ease;
}

.chat-window.active {
  display: flex;
}

.chat-header {
  padding: 16px;
  background-color: #2563eb;
  color: white;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.chat-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 20px;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-message {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  max-width: 85%;
}

.chat-message.user {
  align-self: flex-end;
  background-color: #2563eb;
  color: white;
}

.chat-message.bot {
  align-self: flex-start;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

.chat-input {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border-color);
}

.chat-input input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 13px;
}

.chat-input button {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background-color: #2563eb;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ====================================================================
   OVERLAY BACKDROP - Sidebar & Modals
   ==================================================================== */

.sidebar-backdrop {
  display: none;
  position: fixed;
  top: var(--mobile-sidebar-h);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 998;
}

.sidebar-backdrop.active {
  display: block;
}

/* ====================================================================
   RESPONSIVE TEXT SIZES
   ==================================================================== */

h1 {
  font-size: 24px;
  margin: 16px 0 8px 0;
}

h2 {
  font-size: 20px;
  margin: 12px 0 8px 0;
}

h3 {
  font-size: 16px;
  margin: 8px 0 6px 0;
}

p {
  margin: 0 0 8px 0;
}

/* ====================================================================
   TABLET RESPONSIVE (768px - 1024px)
   ==================================================================== */

@media (min-width: 768px) {
  :root {
    --mobile-sidebar-h: 0;
  }

  body {
    flex-direction: row;
  }

  .sidebar {
    position: relative;
    top: 0;
    left: 0;
    width: var(--sidebar-w);
    height: 100vh;
    border-right: 1px solid var(--border-color);
    z-index: auto;
    box-shadow: none;
  }

  .hamburger-menu,
  .sidebar-backdrop {
    display: none !important;
  }

  .main-content {
    flex: 1;
    margin-top: 0;
    padding: 20px;
  }

  .top-bar {
    position: relative;
    height: var(--top-bar-h);
    padding: 0 20px;
  }

  /* Grids on tablet: 2 columns */
  .stat-grid,
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card,
  .card {
    padding: 20px;
  }

  .card-title {
    font-size: 15px;
  }

  .stat-value {
    font-size: 32px;
  }

  /* Search bar not full width */
  .top-bar-search {
    flex: 0 1 300px;
  }

  /* Tables: better spacing */
  .data-table th,
  .data-table td {
    padding: 14px 10px;
  }

  /* Forms: better spacing */
  .form-group {
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 15px;
  }

  /* Buttons: normal sizing */
  button, .btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  .btn-small {
    padding: 8px 14px;
    font-size: 13px;
  }

  /* Modal: better sizing */
  .modal-content {
    max-width: 600px;
    max-height: 80vh;
  }

  .auth-card {
    max-width: 500px;
  }

  /* Chat widget: better positioning */
  .chat-widget {
    bottom: 30px;
    right: 30px;
  }

  .chat-window {
    width: 420px;
    height: 550px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }
}

/* ====================================================================
   DESKTOP RESPONSIVE (1024px+)
   ==================================================================== */

@media (min-width: 1024px) {
  .main-content {
    padding: 24px;
  }

  .top-bar {
    padding: 0 24px;
  }

  /* Grids on desktop: 3-4 columns */
  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .overview-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .stat-card,
  .card {
    padding: 24px;
    gap: 12px;
  }

  .card-title {
    font-size: 16px;
  }

  .stat-value {
    font-size: 36px;
  }

  /* Search bar wider */
  .top-bar-search {
    flex: 0 1 400px;
  }

  /* Tables: more spacious */
  .data-table th,
  .data-table td {
    padding: 16px 12px;
  }

  /* Forms: more spacious */
  .form-group {
    margin-bottom: 24px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
  }

  /* Buttons */
  button, .btn {
    padding: 12px 24px;
    font-size: 16px;
  }

  /* Modal: larger */
  .modal-content {
    max-width: 800px;
    max-height: 85vh;
  }

  .auth-card {
    max-width: 450px;
  }

  /* Chat widget: standard positioning */
  .chat-widget {
    bottom: 40px;
    right: 40px;
  }

  .chat-window {
    width: 420px;
    height: 600px;
  }

  h1 {
    font-size: 32px;
    margin: 20px 0 10px 0;
  }

  h2 {
    font-size: 28px;
    margin: 16px 0 10px 0;
  }

  h3 {
    font-size: 20px;
    margin: 12px 0 8px 0;
  }
}

/* ====================================================================
   UTILITY CLASSES
   ==================================================================== */

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ====================================================================
   ACCESSIBILITY & PERFORMANCE
   ==================================================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  .nav-item {
    border-width: 2px;
  }

  button, .btn {
    border-width: 2px;
  }
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
  button, .btn, .nav-item {
    min-height: 44px;
    min-width: 44px;
  }

  .top-bar-btn {
    width: 44px;
    height: 44px;
  }

  .modal-close {
    width: 44px;
    height: 44px;
  }
}

/* Print styles */
@media print {
  .sidebar,
  .top-bar,
  .hamburger-menu,
  .chat-widget,
  .pwa-install-banner {
    display: none !important;
  }

  body {
    background-color: white;
  }

  .main-content {
    margin-top: 0;
    padding: 0;
  }
}
