@charset "UTF-8";
/* Intelatech-inspired GLPI palette (blue + green) */
/* File name: intelatech.scss  -> palette name: "intelatech" */
:root[data-glpi-theme=intelatech] {
  /* Primary / brand blue: #0057B8 */
  --tblr-primary-rgb: 0, 87, 184;
  --tblr-primary: rgb(var(--tblr-primary-rgb));
  --tblr-primary-fg: #ffffff;
  /* Secondary / accent green: #00B140 */
  --tblr-secondary-rgb: 0, 177, 64;
  --tblr-secondary: rgb(var(--tblr-secondary-rgb));
  --tblr-secondary-fg: #ffffff;
  /* Links – use brand blue */
  --tblr-link-color-rgb: 0, 87, 184;
  /* Status / semantic colors (tuned to fit the palette) */
  --tblr-success-rgb: 0, 177, 64; /* same green */
  --tblr-success: rgb(var(--tblr-success-rgb));
  --tblr-warning-rgb: 255, 176, 32; /* #FFB020 – warm amber */
  --tblr-warning: rgb(var(--tblr-warning-rgb));
  --tblr-danger-rgb: 229, 57, 53; /* #E53935 – soft red */
  --tblr-danger: rgb(var(--tblr-danger-rgb));
  --tblr-info-rgb: 33, 150, 243; /* #2196F3 – light info blue */
  --tblr-info: rgb(var(--tblr-info-rgb));
  /* Backgrounds & surfaces */
  /* Light, slightly blue-tinted background: #F5F7FB */
  --tblr-body-bg: #f5f7fb;
  --tblr-bg-surface: #ffffff;
  --tblr-bg-surface-secondary: #eef2fa;
  /* Text & muted text */
  /* Dark navy text: #1E2A3B */
  --tblr-body-color: #1e2a3b;
  --tblr-muted-color: rgba(30, 42, 59, 0.65);
  /* Borders */
  /* Soft grey-blue border: #D3DCE8 */
  --tblr-border-color: #d3dce8;
  /* GLPI main menu (left sidebar) */
  --glpi-mainmenu-bg: #0057b8; /* solid brand blue */
  --glpi-mainmenu-fg: #ffffff; /* white text/icons */
  /* Optional: slightly darker submenu background for contrast */
  --glpi-mainmenu-submenu-bg: #00448f;
  /* Palette preview swatches in the dropdown */
  --glpi-palette-color-1: #0057b8; /* primary blue */
  --glpi-palette-color-2: #00b140; /* accent green */
  --glpi-palette-color-3: #f5f7fb; /* background */
  --glpi-palette-color-4: #1e2a3b; /* text/nav dark */
}