:root {
  --bg: #ffffff;
  --bg-secondary: #f2f2f7;
  --text: #000000;
  --text-secondary: #555555;
  --accent: #007aff;
  --border: #e5e5ea;
  --card-bg: #ffffff;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
}

html.dark {
  --bg: #000000;
  --bg-secondary: #1c1c1e;
  --text: #ffffff;
  --text-secondary: #8e8e93;
  --accent: #0a84ff;
  --border: #2c2c2e;
  --card-bg: #1c1c1e;
}
.theme-oled {
  --bg-color: #000000;
  --card-bg: #0a0a0a;
  --text-color: #ffffff;
  --accent-color: #007aff;
  --border-color: #222;
  --button-bg: #111;
  --button-text: #fff;
  --input-bg: #111;
  --input-text: #fff;
  --history-item-bg: #0d0d0d;
}
.ticket-vip { color: #FFD60A; }
.ticket-standard { color: #0A84FF; }
.ticket-masa { color: #34C759; }
.ticket-abonament { color: #FF9F0A; }
/* Exemple de aplicare variabile */
.oled .card,
.oled .history-item,
.oled .confirm-box {
  background: var(--card-bg);
  color: var(--text-color);
  border-color: var(--border-color);
}

.oled button {
  background: #111;
  color: #fff;
}

.oled .filter-btn.active {
  background: var(--accent-color);
  color: #fff;
}
.oled .confirm-box {
  background: #0a0a0a;
  color: #fff;
}

.oled .confirm-overlay {
  background: rgba(0,0,0,0.7);
}
.oled .history-item {
  background: #0d0d0d;
  border: 1px solid #222;
}