:root {
  --bg-color: #f5f5f5;
  --card-bg: #ffffff;
  --text-main: #1a1a1a;
  --text-muted: #6b6b6b;
  --accent-color: #2e7d32;
  --accent-green: #43a047;
  --glass-border: rgba(0, 0, 0, 0.06);
  --glass-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);

  /* Waste Colors - saturi e vivaci */
  --color-verde: #43a047;
  --color-vetro: #4caf50;
  --color-umido: #ff6f00;
  --color-plastica: #ffc107;
  --color-secco: #607d8b;
  --color-pannolini: #e91e63;
  --color-carta: #2196f3;
  --color-panno: #9c27b0;
  --card-placeholder: #e0e0e0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
}

body {
  background: #f5f5f5;
  color: var(--text-main);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.app-container {
  width: 100%;
  max-width: 480px;
  padding: 24px 16px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

/* ── Header ── */
.app-header {
  padding: max(16px, env(safe-area-inset-top)) 0 14px;
}

/* Row 1: logo + testo + date badge */
.header-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(46,125,50,.25);
}

.header-top-text {
  flex: 1;
  min-width: 0;
}

.header-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.4px;
  margin: 0;
  color: var(--text-main);
  line-height: 1;
}

.status-pill {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  background: #eee;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .6px;
  white-space: nowrap;
}
.status-pill.active {
  background: #ff3b30;
  color: #fff;
  animation: pulse 2s infinite;
}
.status-pill.ok {
  background: #43a047;
  color: #fff;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,59,48,.4) }
  70%  { box-shadow: 0 0 0 8px rgba(255,59,48,0) }
  100% { box-shadow: 0 0 0 0 rgba(255,59,48,0) }
}

.full-date {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: capitalize;
  margin: 4px 0 0;
  line-height: 1;
}

.date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 13px;
  flex-shrink: 0;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
}
.day-num {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-main);
}
.month-name {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  color: #2e7d32;
  letter-spacing: .5px;
  margin-top: 1px;
}

/* Row 2: chip location + download */
.header-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(46,125,50,.1);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #2e7d32;
  letter-spacing: .3px;
}
.location-chip svg { flex-shrink: 0 }

.btn-download-pdf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #e53935;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background .2s;
}
.btn-download-pdf:active { background: #c62828 }
.btn-download-pdf svg { flex-shrink: 0 }

/* Card Styles */
.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Timer card - verde vivace */
.timer-card {
  background: linear-gradient(145deg, #2e7d32 0%, #43a047 100%);
  border: none;
  padding: 18px 20px;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.35);
}
.timer-header {
  margin-bottom: 12px;
}
.timer-label-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.timer-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95);
}
.timer-label {
  font-size: 17px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
}
.timer-display {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 6px;
}
.timer-unit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 42px;
  padding: 8px 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: white;
}
.timer-unit span {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.timer-unit small {
  font-size: 9px;
  opacity: 0.9;
  margin-top: 2px;
}
.timer-sep {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0.5; }
}
.waste-container-timer {
  justify-content: flex-start;
  margin-bottom: 12px;
}
.waste-container-timer .badge {
  padding: 6px 12px;
  font-size: 11px;
}
.timer-msg {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
  text-align: left;
  font-weight: 500;
}
.timer-rules {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
  margin: 0;
}
.timer-card .badge.nessuno {
  background: rgba(255, 255, 255, 0.35);
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}


.main-highlight {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #1e7b3a 0%, #248a3d 50%, #2a9d47 100%);
  border: none;
  margin-bottom: 24px;
  padding: 22px 20px;
}

.main-highlight .card-header,
.main-highlight .header-text h2,
.main-highlight .subtitle,
.main-highlight .waste-container .badge,
.main-highlight .action-hint {
  color: white !important;
}

.main-highlight .subtitle {
  opacity: 0.92;
}

.main-highlight .icon-circle-green {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

.main-highlight .waste-container .badge.nessuno {
  background: rgba(255, 255, 255, 0.35);
  color: white !important;
  border-color: rgba(255, 255, 255, 0.4);
}

.main-highlight .action-hint {
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.main-highlight .action-hint::before {
  content: none;
}

.card-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 122, 255, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle-green {
  background: rgba(36, 138, 61, 0.12);
  color: var(--accent-green);
}

.header-text h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.subtitle {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.waste-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.waste-container-main .badge {
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 10px;
}

.badge {
  padding: 5px 11px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.badge.verde {
  background: var(--color-verde);
  color: white;
}
.badge.vetro {
  background: var(--color-vetro);
  color: white;
}
.badge.umido {
  background: var(--color-umido);
  color: white;
}
.badge.plastica {
  background: var(--color-plastica);
  color: white;
}
.badge.secco {
  background: var(--color-secco);
  color: white;
}
.badge.pannolini,
.badge.panno {
  background: var(--color-pannolini);
  color: white;
}
.badge.carta {
  background: var(--color-carta);
  color: white;
}
.badge.nessuno {
  background: #e5e5ea;
  color: #6e6e73;
  box-shadow: none;
}

.action-hint {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(36, 138, 61, 0.06);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(36, 138, 61, 0.12);
}

.action-hint::before {
  content: "💡";
}

/* Secondary Card - Oggi con rotellina animata */
.secondary-card {
  padding: 16px 20px;
  margin-top: 24px;
}

.card-header-small {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-header-small h3 {
  font-size: 16px;
  font-weight: 700;
}

.small-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(36, 138, 61, 0.25);
  border-top-color: var(--accent-green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Agenda Section */
.calendar-section {
  margin-top: 8px;
}

.section-header h2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-left: 2px;
}

.upcoming-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.upcoming-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.upcoming-date {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.day-name {
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--text-main);
}

.date-short {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.upcoming-badges {
  display: flex;
  gap: 6px;
}

.upcoming-badges .badge {
  padding: 5px 10px;
  font-size: 11px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  color: white !important;
}

.app-footer {
  margin-top: 20px;
  padding-top: 16px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}

/* Tab panels */
.tab-panel {
  display: none;
  animation: fadeIn 0.25s ease;
}
.tab-panel.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Bottom Navbar iOS-style - snella, sempre visibile */
.bottom-nav {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 420px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 8px;
  padding-bottom: max(6px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 99999;
  visibility: visible;
  opacity: 1;
}
.nav-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 8px;
  background: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  transition: color 0.2s, background 0.2s;
}
.nav-tab:hover {
  color: #2e7d32;
}
.nav-tab.active {
  color: #2e7d32;
  background: rgba(46, 125, 50, 0.18);
}
.nav-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-icon svg {
  width: 18px;
  height: 18px;
}

/* Calendar tab */
.calendar-tab {
  padding: 8px 0;
}
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: white;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.nav-btn:hover {
  background: rgba(36, 138, 61, 0.08);
}
.calendar-title {
  font-size: 17px;
  font-weight: 700;
}
.calendar-month-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  background: white;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.calendar-grid .weekday {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 0;
}
.calendar-grid .day-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: default;
}
.calendar-grid .day-cell.empty {
  color: transparent;
  pointer-events: none;
}
.calendar-grid .day-cell.today {
  background: var(--accent-green);
  color: white;
}
.calendar-grid .day-cell.has-collection {
  background: rgba(36, 138, 61, 0.12);
  color: var(--accent-green);
}
.calendar-grid .day-cell.today.has-collection {
  background: var(--accent-green);
  color: white;
}
.calendar-grid .day-cell .day-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
  margin-top: 2px;
}
.calendar-grid .day-cell .day-badges .mini-badge {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.calendar-month-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calendar-month-list .month-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.calendar-month-list .month-list-item .week-date {
  font-weight: 700;
  font-size: 15px;
  text-transform: capitalize;
}
.calendar-month-list .month-list-item .week-badges {
  display: flex;
  gap: 6px;
}

/* Waste info cards */
.waste-info-section {
  padding: 8px 0;
}
.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.section-intro {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.waste-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.waste-info-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.waste-info-card:hover,
.waste-info-card:active {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(76, 175, 80, 0.3);
}
.waste-info-card::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") no-repeat center;
  opacity: 0.6;
}
.waste-info-card:hover::after {
  opacity: 1;
}
.waste-info-card .card-img-wrap {
  height: 170px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.waste-info-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.waste-info-card .card-img-wrap.no-img {
  background: linear-gradient(135deg, var(--color-umido) 0%, #e5a87a 100%);
}
.waste-info-card .card-body {
  padding: 14px 18px 18px 44px;
  background: rgba(0, 0, 0, 0.04);
}
.waste-info-card.carta .card-body { background: rgba(33, 150, 243, 0.12); }
.waste-info-card.plastica .card-body { background: rgba(255, 193, 7, 0.2); }
.waste-info-card.umido .card-body { background: rgba(255, 111, 0, 0.12); }
.waste-info-card.vetro .card-body { background: rgba(76, 175, 80, 0.12); }
.waste-info-card.secco .card-body { background: rgba(96, 125, 139, 0.15); }
.waste-info-card.verde .card-body { background: rgba(67, 160, 71, 0.12); }
.waste-info-card.pannolini .card-body { background: rgba(233, 30, 99, 0.12); }
.waste-info-card .card-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.waste-info-card .card-body h3 .badge {
  font-size: 12px;
  padding: 4px 10px;
}
.waste-info-card.umido .card-img-wrap.no-img { background: linear-gradient(135deg, var(--color-umido) 0%, #ff8a65 100%); }
.waste-info-card.plastica .card-img-wrap.no-img { background: linear-gradient(135deg, var(--color-plastica) 0%, #ffc107 100%); }
.waste-info-card.verde .card-img-wrap.no-img { background: linear-gradient(135deg, var(--color-verde) 0%, #81c784 100%); }
.waste-info-card.vetro .card-img-wrap.no-img { background: linear-gradient(135deg, var(--color-vetro) 0%, #81c784 100%); }
.waste-info-card.secco .card-img-wrap.no-img { background: linear-gradient(135deg, var(--color-secco) 0%, #90a4ae 100%); }
.waste-info-card.carta .card-img-wrap.no-img { background: linear-gradient(135deg, var(--color-carta) 0%, #64b5f6 100%); }
.waste-info-card.pannolini .card-img-wrap.no-img { background: linear-gradient(135deg, var(--color-pannolini) 0%, #f06292 100%); }

/* Popup dettaglio - design intuitivo */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.popup-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  background: white;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.35s ease-out;
  scrollbar-width: thin;
  scrollbar-color: #b0b0b0 #f0f0f0;
}
.popup-handle {
  width: 40px;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  margin: 12px auto 0;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}
.popup-close:hover {
  background: rgba(0, 0, 0, 0.1);
}
.popup-content {
  padding: 0 0 32px;
}
.popup-header {
  padding: 24px 24px 16px;
  text-align: center;
}
.popup-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--text-main);
}
.popup-img-wrap {
  height: 200px;
  margin: 0 20px 24px;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.popup-sections {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.popup-section {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 16px 18px;
}
.popup-section h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.popup-section h3 .popup-icon {
  flex-shrink: 0;
}
.popup-section.popup-ok h3 .popup-icon { color: #2e7d32; }
.popup-section.popup-no h3 .popup-icon { color: #c62828; }
.popup-section.popup-ok h3 { color: #2e7d32; }
.popup-section.popup-no {
  background: #fff5f5;
}
.popup-section.popup-no h3 { color: #c62828; }
.popup-section ul {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-main);
}
.popup-section li {
  margin-bottom: 8px;
}
.popup-section li:last-child {
  margin-bottom: 0;
}

/* Scrollbar personalizzata */
html::-webkit-scrollbar,
.popup-container::-webkit-scrollbar {
  width: 6px;
}
html::-webkit-scrollbar-track,
.popup-container::-webkit-scrollbar-track {
  background: transparent;
  margin: 12px 4px;
}
html::-webkit-scrollbar-thumb,
.popup-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
html::-webkit-scrollbar-thumb:hover,
.popup-container::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.35);
}

@media (max-width: 400px) {
  .app-container {
    padding: 20px 14px;
  }
  .header-title h1 {
    font-size: 22px;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
  }
}
