/* ISEM custom theme override for ARSnova/Particify webclient.
   Mounted as an extra static file; loaded via nginx sub_filter injection.
   Survives webclient image updates because it never touches the app bundle. */

:root {
  /* Legacy Material palette system (components that use var(--palette-primary-*)) */
  --palette-primary-500-no-rgb: 0, 193, 212;   /* #00c1d4 */
  --palette-primary-400-no-rgb: 38, 178, 196;
  --palette-primary-600-no-rgb: 0, 168, 184;

  /* ISEM brand colors for direct use */
  --isem-primary: #00c1d4;
  --isem-secondary: #265d71;
}

/* Toolbar / header background */
.mat-toolbar.mat-primary,
html body .mdc-top-app-bar,
header.mat-toolbar {
  background-color: var(--isem-secondary) !important;
}

/* Logo swap: hide the built-in inline logo, show the ISEM institute logo instead */
.logo-container svg,
.logo-container img {
  visibility: hidden;
}
.logo-container {
  background-image: url('/assets/isem-logo.svg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
