/*
UniMatch - appdesktop/assets/css/theme.css - global CSS variables and base reset - css
https://Unimatch.click

@author: Jacopo Siceri, https://www.linkedin.com/in/edoardo-lo-jacono-a55514210/
*/

/* Sicer's light theme variables */
:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-muted: rgba(255, 255, 255, 0.8);
  --panel: rgba(255, 255, 255, 0.65);
  --panel-strong: rgba(255, 255, 255, 0.85);
  --border: rgba(0, 0, 0, 0.12);
  --text: #1c1c1e;
  --muted: #5f6368;
  --accent: #007aff;
  --good: #36c275;
  --warn: #ffcc00;
  --danger: #ff4d4d;
  --search-bar-bg: #f0f0f0;
  --search-bar-focus-bg: #e8e8e8;
  --search-icon-filter: invert(0);
  --results-bg: rgba(255, 255, 255, 0.6);
  --tabs-bg: rgba(0, 0, 0, 0.05);
  --tab-hover-bg: rgba(0, 0, 0, 0.08);
  --tab-active-bg: rgba(0, 0, 0, 0.14);
  --separator-color: #ccc;
  --list-hover-bg: rgba(0, 0, 0, 0.05);
}
/* Sicer's dark theme variables */
[data-theme="dark"] {
  --bg: #0f0f12;
  --surface: #1f1f1f;
  --surface-muted: rgba(30, 30, 35, 0.75);
  --panel: rgba(30, 30, 35, 0.55);
  --panel-strong: rgba(30, 30, 35, 0.75);
  --border: rgba(255, 255, 255, 0.18);
  --text: #f1f3f5;
  --muted: #b7bcc2;
  --accent: #2f74ff;
  --good: #36c275;
  --warn: #ffcc00;
  --danger: #ff4d4d;
  --search-bar-bg: #333;
  --search-bar-focus-bg: #444;
  --search-icon-filter: invert(1);
  --results-bg: rgba(30, 30, 30, 0.6);
  --tabs-bg: rgba(255, 255, 255, 0.08);
  --tab-hover-bg: rgba(255, 255, 255, 0.15);
  --tab-active-bg: rgba(255, 255, 255, 0.22);
  --separator-color: #555;
  --list-hover-bg: rgba(255, 255, 255, 0.08);
}
/* Sicer's global font and margin reset */
html, body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
}
/* Sicer's box-sizing reset */
*, *::before, *::after {
  box-sizing: border-box;
}
/* Sicer's utility class to hide elements */
.hidden {
  display: none !important;
}

/* Prodotto da $1C3Я

███████╗██╗ ██████╗███████╗██████╗
██╔════╝██║██╔════╝██╔════╝██╔══██╗
███████╗██║██║     █████╗  ██████╔╝
╚════██║██║██║     ██╔══╝  ██╔══██╗
███████║██║╚██████╗███████╗██║  ██║
╚══════╝╚═╝ ╚═════╝╚══════╝╚═╝  ╚═╝
2026 */
