/* ===========================
   #region Soft UI Design Tokens
   =========================== */
:root {
  --soft-ui-primary-bg: #ffffff;
  --soft-ui-secondary-bg: #f0f4fa;
  --soft-ui-tertiary-bg: #e4e8ee;
  --soft-ui-surface: #f8f9fa;
  --soft-ui-disabled-bg: #e6e8eb;
  --soft-ui-focus-bg: #f8fafc;
  --soft-ui-border-color: #dadada;
  --soft-ui-border-width: 1px;
  --soft-ui-border-radius: 0.8rem;
  --soft-ui-border-radius-sm: 0.5rem;
  --soft-ui-border-radius-lg: 1rem;
  --soft-ui-border-radius-pill: 50px;
  --soft-ui-shadow-light-1: rgba(188, 188, 188, 0.2);
  --soft-ui-shadow-light-2: rgba(188, 188, 188, 0.3);
  --soft-ui-shadow-light-3: rgba(188, 188, 188, 0.4);
  --soft-ui-shadow-dark-1: rgba(255, 255, 255, 0.5);
  --soft-ui-shadow-dark-2: rgba(255, 255, 255, 0.6);
  --soft-ui-shadow-dark-3: rgba(255, 255, 255, 0.8);
  --soft-ui-inset-shadow-light: rgba(188, 188, 188, 0.3);
  --soft-ui-inset-shadow-dark: rgba(255, 255, 255, 0.8);
  --soft-ui-spacing-xs: 0.25rem;
  --soft-ui-spacing-sm: 0.5rem;
  --soft-ui-spacing-md: 0.75rem;
  --soft-ui-spacing-lg: 1rem;
  --soft-ui-spacing-xl: 1.25rem;
  --soft-ui-font-weight-normal: 400;
  --soft-ui-font-weight-medium: 500;
  --soft-ui-font-weight-semibold: 600;
  --soft-ui-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  --soft-ui-transition-speed: 0.2s;
  --soft-ui-transition-easing: ease-in-out;
  --soft-ui-opacity-disabled: 0.5;
  --soft-ui-opacity-icon: 0.7;
  --soft-ui-opacity-icon-hover: 1;
  --soft-ui-height-control: 2.2rem;
  --soft-ui-height-textarea: 5rem;
  --soft-ui-button-min-width: 2.5rem;
  --soft-ui-button-min-height: 2.5rem;
  --button-default-bg: linear-gradient(145deg, #eaf0f8, #dce4ec);
  --button-glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
}
/* #endregion */
/* ===========================
   #region Soft UI Mixins
   =========================== */
/* #endregion */
/* ===========================
   #region Soft UI Button Mixin
   =========================== */
/* === Base Button === */
.soft-ui-button-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  border: none;
  color: var(--button-text);
  background: var(--button-bg);
  /* Dynamic sizing */
  min-width: var(--soft-ui-button-min-width, auto);
  min-height: var(--soft-ui-button-min-height, auto);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
}
/* Hover */
.soft-ui-button-base:hover {
  background: var(--button-bg-hover, var(--button-bg));
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 3px 3px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
  cursor: pointer;
}
/* Active */
.soft-ui-button-base:active {
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.1), inset -1px -1px 2px rgba(255, 255, 255, 0.4);
  transform: translateY(0);
}
/* Focus */
.soft-ui-button-base:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(120, 160, 220, 0.25), inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05);
}
/* Disabled */
.soft-ui-button-base:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}
/*  Variant Modifiers (override CSS variables) */
.soft-ui-button[data-style="default"] {
  --button-bg: linear-gradient(145deg, #d4dde8, #c5ced8);
  --button-text: #1f2f4f;
}
.soft-ui-button[data-style="primary"] {
  --button-bg: linear-gradient(145deg, #6fa3d9, #5b93d0);
  --button-text: #fff;
}
.soft-ui-button[data-style="danger"] {
  --button-bg: linear-gradient(145deg, #e07a7a, #d06565);
  --button-text: #fff;
}
.soft-ui-button[data-style="info"] {
  --button-bg: linear-gradient(145deg, #9fc8e8, #86b8dc);
  --button-text: #fff;
}
.soft-ui-button[data-style="warning"] {
  --button-bg: linear-gradient(145deg, #f2c66f, #e8b85b);
  --button-text: var(--dark-blue);
}
.soft-ui-button[data-style="success"] {
  --button-bg: linear-gradient(145deg, #6fd99a, #5bcf88);
  --button-text: var(--dark-blue);
}
.soft-ui-button[data-style="glass"] {
  --button-bg: rgba(255, 255, 255, 0.15);
  --button-text: var(--dark-blue);
  backdrop-filter: blur(8px);
  box-shadow: none;
}
/*  Dark Mode Overrides */
.dark .soft-ui-button[data-style="default"] {
  --button-bg: linear-gradient(135deg, #1e293b, #0f172a);
  --button-text: #f1f5f9;
  --border-gradient: linear-gradient(135deg, #334155, #1e293b, #334155);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.dark .soft-ui-button[data-style="primary"] {
  --button-bg: var(--dark-blue-gradient);
  --button-text: var(--white);
  --border-gradient: var(--dark-blue-gradient);
}
.dark .soft-ui-button[data-style="glass"] {
  --button-bg: linear-gradient(135deg, rgba(30, 41, 59, 0.3), rgba(30, 41, 59, 0.1));
  --button-text: var(--white);
  --border-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px) saturate(160%);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.06), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}
/* #endregion */
/* ===========================
   #region Form Control Mixins
   =========================== */
/* #endregion */
/* ===========================
   #region Standard Form Controls - Soft UI Styling
   =========================== */
/* Native HTML input elements */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"] {
  position: relative;
  border: 1px solid rgba(var(--mid-blue-rgb), 0.25) !important;
  border-radius: 0.8rem !important;
  background: var(--soft-ui-surface) !important;
  box-shadow: inset 1px 1px 2px rgba(188, 188, 188, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
  min-height: 2.2rem;
  padding: 0.4rem 0.75rem;
  color: #333;
  font-weight: 500;
}
input[type="text"]::placeholder,
input[type="search"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
input[type="date"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="month"]::placeholder,
input[type="week"]::placeholder,
input[type="time"]::placeholder {
  color: rgba(100, 110, 130, 0.6);
  font-weight: 400;
}
input[type="text"]:hover:not(:disabled):not(:read-only),
input[type="search"]:hover:not(:disabled):not(:read-only),
input[type="email"]:hover:not(:disabled):not(:read-only),
input[type="password"]:hover:not(:disabled):not(:read-only),
input[type="number"]:hover:not(:disabled):not(:read-only),
input[type="tel"]:hover:not(:disabled):not(:read-only),
input[type="url"]:hover:not(:disabled):not(:read-only),
input[type="date"]:hover:not(:disabled):not(:read-only),
input[type="datetime-local"]:hover:not(:disabled):not(:read-only),
input[type="month"]:hover:not(:disabled):not(:read-only),
input[type="week"]:hover:not(:disabled):not(:read-only),
input[type="time"]:hover:not(:disabled):not(:read-only) {
  background: linear-gradient(145deg, #f0f4fa, #e4e8ee);
  box-shadow: inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
}
input[type="text"]:focus:not(:disabled):not(:read-only),
input[type="search"]:focus:not(:disabled):not(:read-only),
input[type="email"]:focus:not(:disabled):not(:read-only),
input[type="password"]:focus:not(:disabled):not(:read-only),
input[type="number"]:focus:not(:disabled):not(:read-only),
input[type="tel"]:focus:not(:disabled):not(:read-only),
input[type="url"]:focus:not(:disabled):not(:read-only),
input[type="date"]:focus:not(:disabled):not(:read-only),
input[type="datetime-local"]:focus:not(:disabled):not(:read-only),
input[type="month"]:focus:not(:disabled):not(:read-only),
input[type="week"]:focus:not(:disabled):not(:read-only),
input[type="time"]:focus:not(:disabled):not(:read-only) {
  outline: none;
  border-color: rgba(var(--mid-blue-rgb), 0.4);
  box-shadow: 0 0 0 3px rgba(var(--mid-blue-rgb), 0.12), 0 0 6px rgba(var(--mid-blue-rgb), 0.18), inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6);
  background: #f8fafc;
}
input[type="text"]:disabled,
input[type="search"]:disabled,
input[type="email"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="tel"]:disabled,
input[type="url"]:disabled,
input[type="date"]:disabled,
input[type="datetime-local"]:disabled,
input[type="month"]:disabled,
input[type="week"]:disabled,
input[type="time"]:disabled,
input[type="text"]:read-only,
input[type="search"]:read-only,
input[type="email"]:read-only,
input[type="password"]:read-only,
input[type="number"]:read-only,
input[type="tel"]:read-only,
input[type="url"]:read-only,
input[type="date"]:read-only,
input[type="datetime-local"]:read-only,
input[type="month"]:read-only,
input[type="week"]:read-only,
input[type="time"]:read-only {
  background: #f0f2f5 !important;
  color: rgba(120, 120, 120, 0.6);
  box-shadow: none !important;
  cursor: not-allowed;
  opacity: 0.6;
}
/* Textarea elements */
textarea,
textarea.form-control {
  position: relative;
  border: 1px solid rgba(var(--mid-blue-rgb), 0.25) !important;
  border-radius: 0.8rem !important;
  background: var(--soft-ui-surface) !important;
  box-shadow: inset 1px 1px 2px rgba(188, 188, 188, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
  min-height: 2.2rem;
  padding: 0.4rem 0.75rem;
  color: #333;
  font-weight: 500;
  min-height: 5rem;
  resize: vertical;
}
textarea::placeholder,
textarea.form-control::placeholder {
  color: rgba(100, 110, 130, 0.6);
  font-weight: 400;
}
textarea:hover:not(:disabled):not(:read-only),
textarea.form-control:hover:not(:disabled):not(:read-only) {
  background: linear-gradient(145deg, #f0f4fa, #e4e8ee);
  box-shadow: inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
}
textarea:focus:not(:disabled):not(:read-only),
textarea.form-control:focus:not(:disabled):not(:read-only) {
  outline: none;
  border-color: rgba(var(--mid-blue-rgb), 0.4);
  box-shadow: 0 0 0 3px rgba(var(--mid-blue-rgb), 0.12), 0 0 6px rgba(var(--mid-blue-rgb), 0.18), inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6);
  background: #f8fafc;
}
textarea:disabled,
textarea.form-control:disabled,
textarea:read-only,
textarea.form-control:read-only {
  background: #f0f2f5 !important;
  color: rgba(120, 120, 120, 0.6);
  box-shadow: none !important;
  cursor: not-allowed;
  opacity: 0.6;
}
/* Native select elements */
select,
select.form-control {
  position: relative;
  border: 1px solid rgba(var(--mid-blue-rgb), 0.25) !important;
  border-radius: 0.8rem !important;
  background: var(--soft-ui-surface) !important;
  box-shadow: inset 1px 1px 2px rgba(188, 188, 188, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
  min-height: 2.2rem;
  padding: 0.4rem 0.75rem;
  color: #333;
  font-weight: 500;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}
select::placeholder,
select.form-control::placeholder {
  color: rgba(100, 110, 130, 0.6);
  font-weight: 400;
}
select:hover:not(:disabled):not(:read-only),
select.form-control:hover:not(:disabled):not(:read-only) {
  background: linear-gradient(145deg, #f0f4fa, #e4e8ee);
  box-shadow: inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
}
select:focus:not(:disabled):not(:read-only),
select.form-control:focus:not(:disabled):not(:read-only) {
  outline: none;
  border-color: rgba(var(--mid-blue-rgb), 0.4);
  box-shadow: 0 0 0 3px rgba(var(--mid-blue-rgb), 0.12), 0 0 6px rgba(var(--mid-blue-rgb), 0.18), inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6);
  background: #f8fafc;
}
select:disabled,
select.form-control:disabled,
select:read-only,
select.form-control:read-only {
  background: #f0f2f5 !important;
  color: rgba(120, 120, 120, 0.6);
  box-shadow: none !important;
  cursor: not-allowed;
  opacity: 0.6;
}
/* #endregion */
/* ===========================
   #region Card 
   =========================== */
/* === Card Base === */
.card-hoverable:hover {
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 3px 3px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
@font-face {
  font-family: 'cevi-icon-font';
  src: url('assets/fonts/cevi-icon-font.eot?4b88wo');
  src: url('assets/fonts/cevi-icon-font.eot?4b88wo#iefix') format('embedded-opentype'), url('assets/fonts/cevi-icon-font.ttf?4b88wo') format('truetype'), url('assets/fonts/cevi-icon-font.woff?4b88wo') format('woff'), url('assets/fonts/cevi-icon-font.svg?4b88wo#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"],
[class*=" icon-"] {
  /* use !important to 
  prevent issues with browser extensions that change fonts */
  font-family: 'cevi-icon-font' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-arrowDoubleL:before {
  content: "\e900";
}
.icon-dba:before {
  content: "\e93b";
  font-size: 30px;
}
.icon-arrowDoubleR:before {
  content: "\e901";
}
.icon-arrowDwn:before {
  content: "\e902";
}
.icon-arrowL:before {
  content: "\e903";
}
.icon-arrowR:before {
  content: "\e904";
}
.icon-arrowUp:before {
  content: "\e905";
}
.icon-ico-attachment:before {
  content: "\e906";
}
.icon-ico-check:before {
  content: "\e907";
}
.icon-ico-close:before {
  content: "\e908";
}
.icon-ico-dashboard:before {
  content: "\e909";
}
.icon-ico-datablocks:before {
  content: "\e90a";
}
.icon-ico-delete:before {
  content: "\e90b";
}
.icon-ico-doc-neutral:before {
  content: "\e90c";
}
.icon-ico-doc-word:before {
  content: "\e90d";
  color: #007cb4;
}
.icon-ico-doc-xls:before {
  content: "\e90e";
  color: #7dc13a;
}
.icon-ico-exchange:before {
  content: "\e90f";
}
.icon-ico-eye:before {
  content: "\e910";
}
.icon-ico-fish:before {
  content: "\e911";
}
.icon-ico-help:before {
  content: "\e912";
}
.icon-ico-map:before {
  content: "\e913";
}
.icon-ico-menu:before {
  content: "\e914";
}
.icon-ico-messages:before {
  content: "\e915";
}
.icon-ico-search:before {
  content: "\e916";
}
.icon-ico-settings:before {
  content: "\e917";
}
.icon-ico-tasks:before {
  content: "\e918";
}
.icon-ico-trash1:before {
  content: "\e919";
}
.icon-ico-trash2:before {
  content: "\e91a";
}
.icon-ico-wizard:before {
  content: "\e91b";
}
.icon-lgo-cevi .path1:before {
  content: "\e91c";
  color: #003056;
}
.icon-lgo-cevi .path2:before {
  content: "\e91d";
  margin-left: -1.93652344em;
  color: #d7191b;
}
.icon-lgo-cevi .path3:before {
  content: "\e91e";
  margin-left: -1.93652344em;
  color: #d7191b;
}
.icon-lgo-cevi .path4:before {
  content: "\e91f";
  margin-left: -1.93652344em;
  color: #003056;
}
.icon-lgo-cevi .path5:before {
  content: "\e920";
  margin-left: -1.93652344em;
  color: #003056;
}
.icon-lgo-cevi .path6:before {
  content: "\e921";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path7:before {
  content: "\e922";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path8:before {
  content: "\e923";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path9:before {
  content: "\e924";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path10:before {
  content: "\e925";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path11:before {
  content: "\e926";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path12:before {
  content: "\e927";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path13:before {
  content: "\e928";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path14:before {
  content: "\e929";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path15:before {
  content: "\e92a";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path16:before {
  content: "\e92b";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path17:before {
  content: "\e92c";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path18:before {
  content: "\e92d";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path19:before {
  content: "\e92e";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path20:before {
  content: "\e92f";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path21:before {
  content: "\e930";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path22:before {
  content: "\e931";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path23:before {
  content: "\e932";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path24:before {
  content: "\e933";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path25:before {
  content: "\e934";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path26:before {
  content: "\e935";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path27:before {
  content: "\e936";
  margin-left: -1.93652344em;
  color: #5b6069;
}
.icon-lgo-cevi .path28:before {
  content: "\e937";
  margin-left: -1.93652344em;
  color: #003056;
}
.icon-lgo-cevi .path29:before {
  content: "\e938";
  margin-left: -1.93652344em;
  color: #003056;
}
.icon-ratingStar-off:before {
  content: "\e939";
}
.icon-ratingStar-on:before {
  content: "\e93a";
}
.icon-tit-exportmaken:before {
  content: "\e93b";
}
.icon-tit-rapportmaken:before {
  content: "\e93c";
}
.icon-tit-zoekresultmaken:before {
  content: "\e93e";
}
/* Webfont: LatoLatin-Black */
@font-face {
  font-family: 'LatoLatinWebBlack';
  src: url('assets/fonts/Lato/LatoLatin-Black.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-Black.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-Black.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Black.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Black.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
/* Webfont: LatoLatin-BlackItalic */
@font-face {
  font-family: 'LatoLatinWebBlack';
  src: url('assets/fonts/Lato/LatoLatin-BlackItalic.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-BlackItalic.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-BlackItalic.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-BlackItalic.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-BlackItalic.ttf') format('truetype');
  font-style: italic;
  font-weight: normal;
}
/* Webfont: LatoLatin-Bold */
@font-face {
  font-family: 'LatoLatinWeb';
  src: url('assets/fonts/Lato/LatoLatin-Bold.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-Bold.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-Bold.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Bold.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Bold.ttf') format('truetype');
  font-style: normal;
  font-weight: bold;
}
/* Webfont: LatoLatin-BoldItalic */
@font-face {
  font-family: 'LatoLatinWeb';
  src: url('assets/fonts/Lato/LatoLatin-BoldItalic.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-BoldItalic.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-BoldItalic.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-BoldItalic.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-BoldItalic.ttf') format('truetype');
  font-style: italic;
  font-weight: bold;
}
/* Webfont: LatoLatin-Hairline */
@font-face {
  font-family: 'LatoLatinWebHairline';
  src: url('assets/fonts/Lato/LatoLatin-Hairline.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-Hairline.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-Hairline.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Hairline.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Hairline.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
/* Webfont: LatoLatin-HairlineItalic */
@font-face {
  font-family: 'LatoLatinWebHairline';
  src: url('assets/fonts/Lato/LatoLatin-HairlineItalic.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-HairlineItalic.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-HairlineItalic.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-HairlineItalic.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-HairlineItalic.ttf') format('truetype');
  font-style: italic;
  font-weight: normal;
}
/* Webfont: LatoLatin-Heavy */
@font-face {
  font-family: 'LatoLatinWebHeavy';
  src: url('assets/fonts/Lato/LatoLatin-Heavy.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-Heavy.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-Heavy.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Heavy.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Heavy.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
/* Webfont: LatoLatin-HeavyItalic */
@font-face {
  font-family: 'LatoLatinWebHeavy';
  src: url('assets/fonts/Lato/LatoLatin-HeavyItalic.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-HeavyItalic.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-HeavyItalic.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-HeavyItalic.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-HeavyItalic.ttf') format('truetype');
  font-style: italic;
  font-weight: normal;
}
/* Webfont: LatoLatin-Italic */
@font-face {
  font-family: 'LatoLatinWeb';
  src: url('assets/fonts/Lato/LatoLatin-Italic.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-Italic.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-Italic.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Italic.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Italic.ttf') format('truetype');
  font-style: italic;
  font-weight: normal;
}
/* Webfont: LatoLatin-Light */
@font-face {
  font-family: 'LatoLatinWebLight';
  src: url('assets/fonts/Lato/LatoLatin-Light.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-Light.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-Light.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Light.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Light.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
/* Webfont: LatoLatin-LightItalic */
@font-face {
  font-family: 'LatoLatinWebLight';
  src: url('assets/fonts/Lato/LatoLatin-LightItalic.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-LightItalic.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-LightItalic.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-LightItalic.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-LightItalic.ttf') format('truetype');
  font-style: italic;
  font-weight: normal;
}
/* Webfont: LatoLatin-Medium */
@font-face {
  font-family: 'LatoLatinWebMedium';
  src: url('assets/fonts/Lato/LatoLatin-Medium.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-Medium.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-Medium.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Medium.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Medium.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
/* Webfont: LatoLatin-MediumItalic */
@font-face {
  font-family: 'LatoLatinWebMedium';
  src: url('assets/fonts/Lato/LatoLatin-MediumItalic.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-MediumItalic.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-MediumItalic.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-MediumItalic.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-MediumItalic.ttf') format('truetype');
  font-style: italic;
  font-weight: normal;
}
/* Webfont: LatoLatin-Regular */
@font-face {
  font-family: 'LatoLatinWeb';
  src: url('assets/fonts/Lato/LatoLatin-Regular.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-Regular.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-Regular.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Regular.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
/* Webfont: LatoLatin-Semibold */
@font-face {
  font-family: 'LatoLatinWebSemibold';
  src: url('assets/fonts/Lato/LatoLatin-Semibold.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-Semibold.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-Semibold.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Semibold.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Semibold.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
/* Webfont: LatoLatin-SemiboldItalic */
@font-face {
  font-family: 'LatoLatinWebSemibold';
  src: url('assets/fonts/Lato/LatoLatin-SemiboldItalic.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-SemiboldItalic.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-SemiboldItalic.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-SemiboldItalic.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-SemiboldItalic.ttf') format('truetype');
  font-style: italic;
  font-weight: normal;
}
/* Webfont: LatoLatin-Thin */
@font-face {
  font-family: 'LatoLatinWebThin';
  src: url('assets/fonts/Lato/LatoLatin-Thin.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-Thin.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-Thin.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Thin.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-Thin.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
/* Webfont: LatoLatin-ThinItalic */
@font-face {
  font-family: 'LatoLatinWebThin';
  src: url('assets/fonts/Lato/LatoLatin-ThinItalic.eot');
  /* IE9 Compat Modes */
  src: url('assets/fonts/Lato/LatoLatin-ThinItalic.eot?iefix') format('embedded-opentype'), /* IE6-IE8 */ url('assets/fonts/Lato/LatoLatin-ThinItalic.woff2') format('woff2'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-ThinItalic.woff') format('woff'), /* Modern Browsers */ url('assets/fonts/Lato/LatoLatin-ThinItalic.ttf') format('truetype');
  font-style: italic;
  font-weight: normal;
}
html {
  height: 100%;
  margin: 0;
  overflow-y: hidden;
  padding: 0;
  width: 100%;
  font-size: 14px;
}
body {
  background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAJ3BAMAAACEhHeaAAAAKlBMVEX////8/Pz6+vr4+Pj29vbi4uL09PTy8vLw8PDs7Ozq6urn5+fu7u7k5OQpIQO0AAAEh0lEQVRYw+2Y2+tMURTH1z6j4cHDdk88bOMeD8c1RB23xNO4JqUGKeRhhPCgBvGg1LjfUoMQpVwi1xIhRY0kJf4Xe3PmfNca9u4ckze7nNa293edz1lrnb3O/Oj/+D96GSq4WHhBy9k/VQ3wuguq/iWE9kIo6a6wqneI4qriEL2j657iF4aIgugaKi1UPncDce8AehhCMXd/DaHIp9I5I2GAnh+iB3QsMJXBUk53QXSTP4lelQ+iBJUKoUcmlI5YoPcMEQuVD6LEIYQqDCHNKVjSiF8xCO2DMB4Vm6kCEKYIOiByJnG+L/W+SITRk9BLMBVLo2BKlRYqf/wkugFEsCYkxACuoikhVYW9cjALpgPmKB9EUFVhqvwQA/Oh9w4hVV6ISj6IALqspPwQlRzuSJaz3DoIZqiS5odUFWYGIDg6fBSEiDAdLFSjQ5FQCANThSCmCQgDjMQLIVUVgb4gFzpMuFMozD46iA4fMn4G6BoQzF0YYiFDD0HIZ5rehS6bTV6I+A/oGu5wZ/B4IAaGIAYLiDHuwlQx6lbGz0iVhEjw1hvUXwiCckPgiyEciT513vwUU8VSJc0G0BOBHnvQyzoAUWYQhqIgOsxSA6qEo/et80j00RLiAA6bGj/8+gqIEu7cT7T3oQQ6949BxLkhIqhULaDqgtgB3oMwuyEipnLu4NwIM2IqAVFmdIbKzF1MpA5g0fF4VByixtGJTogSecH7TsQI4Y40h+jvIF5C5XiQEubOJVFCHOrMYAICkTAyHRux8RRXRcd9kWjyNtaHoXdBvBKqFi/nUgx0F4lN2PjWD6GMhFiIL4KzxMdBmC9FJC7DnYDo70K0CxvfCAimkvFrSYhzXKVOikiwt/6ua474DHgnuhUg5DNFV1gkRPwcxB5sPC9UV6E6QaoLYhEgbgmIM5idEe7uudMYNfGBdSsBcVOo7gPioLud7sSvbS8zEb+LAuI6ZtZk6J/SxmZVG+zlkmgURzB7ItLx0K2jMPcbnHma9mLjbamCecpBJJ36a5PpxK8mVYOIbmD2mKOXviB+O+3lGCDGaR6/5wLikQsiamJxLVuaYGgJNr7W0PwO0ehAVKmWdldVFyr3v++heiogvgHded6NtjHZ0BZsvKaRDqvK0NUze5mBY294QuOgOpywdPDy+U5kqNmppCq9SFuUakrVOM0hHnAI+uqkqInFOA8nJjQLW08nPIlPZCSG4AAb0eTor5GO8YaOMghDmu6k6VBVa6afWS0JMTSm7Roq/kzqa/bnkWi9U93JFic1aZYBehM1EdMFnX32rTZEYz9mH5Rjl1uvWd85jWeaXaOjBhB1ohR9jFZtaqfNRlWtanMra83z6jQrRurRj+dqZXOQdrzIQSxenv0+mneXhsVAb2fmsgZdiDs/1NXqF5Z3JbkxU1tzFQ01WfO7VoWqSVvj7DfeZ4f9S7U0sehrqZyktbODDq/I0BevoDkpr6V8UO0EjLY1lHv8KP6F3rRVu4rcWKKtag1NTPPdJ7EqFHCLrjV+kjlHq6uWdy25sa9mHayjkb/u9QNqQsXbYF3/qAAAAABJRU5ErkJggg==) left bottom;
  font-family: "LatoLatinWeb";
  background-repeat: repeat-x;
  font-size: 14px;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
header {
  padding: 10px;
  height: 60px;
}
footer {
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 0;
  background-image: -webkit-linear-gradient(left, #002f51, #002f51 20%, #007cb4 20%, #007cb4 40%, #4fa9d1 40%, #4fa9d1 60%, #d7191b 60%, #d7191b 80%, #5b6069 80%);
  background-image: -ms-linear-gradient(left, #002f51, #002f51 20%, #007cb4 20%, #007cb4 40%, #4fa9d1 40%, #4fa9d1 60%, #d7191b 60%, #d7191b 80%, #5b6069 80%);
  background-image: linear-gradient(to right, #002f51, #002f51 20%, #007cb4 20%, #007cb4 40%, #4fa9d1 40%, #4fa9d1 60%, #d7191b 60%, #d7191b 80%, #5b6069 80%);
}
input {
  border: 1px solid #d3d5db;
}
.logo {
  color: #d7191b;
  margin-left: 10px;
  font-size: 38px;
}
.accordMock {
  background: #f0f0f2;
  border-radius: 5px;
  color: #5b6069;
  font-size: 12px;
  margin-bottom: 5px;
  padding: 8px;
}
.accordMock:hover {
  background: #4fa9d1;
  color: #fff;
}
.accordMock:hover .favorite-filter {
  color: #fff;
}
.FullrowHeader {
  width: -moz-calc(112%);
  /* WebKit */
  width: -webkit-calc(112%);
  /* Opera */
  width: -o-calc(112%);
  width: calc(100% + 12px);
  margin-right: -22px;
}
.PageTitle {
  color: white;
  font-weight: lighter;
  font-size: 16px;
}
.ceviLogo {
  position: absolute;
  bottom: 15px;
  left: 10px;
  height: 20px;
  float: left;
}
.FilterInput {
  margin-left: 5px;
  color: #565962;
  border-radius: 5px;
  height: 28px !important;
  margin-top: 0px;
}
.TodoRow {
  margin-left: -5px;
  margin-right: -5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  border-top: 1px solid #d0d0d0;
  padding-top: 10px;
  margin-bottom: 0px;
  padding-bottom: 10px;
}
.openRowIcon {
  font-size: 9px;
  color: #5b6069;
  float: left;
  width: 9px;
  height: 9px;
  cursor: pointer;
  align-self: center;
  padding-left: 5px;
}
.openRowIconD {
  font-size: 6px;
}
.StatusIndicator {
  width: 20px;
  height: 20px;
  /* background: red; */
  border-radius: 50%;
  color: white;
  font-weight: bold;
  text-align: center;
  line-height: 20px;
  align-self: center;
}
.StatusIndicator p {
  padding-left: 1px;
}
.FilterIcons {
  font-size: 9px;
  margin-top: 6px;
  margin-left: 5px;
  margin-right: 5px;
  color: #5b6069;
  cursor: pointer;
  float: right;
}
.FilterIcons:hover {
  color: #4fa9d1;
}
.TodoRow:hover {
  border-top: 1px solid #4fa9d1;
  border-bottom: 1px solid #4fa9d1;
  background: #dbeef7;
}
.FilterLabel {
  font-weight: bold;
  color: white;
  line-height: 32px;
}
.FilterOperatorSelector {
  height: 28px !important;
  color: #565962;
  border-radius: 5px;
}
.user {
  color: #a7a9b3;
  margin-right: 15px;
  float: left;
  font-size: 12px;
  line-height: 36px;
}
.user > b {
  margin-left: 5px;
  color: #5b6069;
}
.header-right-content {
  height: 100%;
  float: right;
  color: #5b6069;
  margin-right: -10px;
}
.page-menu-item {
  color: #5b6069 !important;
  background-color: #fff;
  font-size: 14px;
  font-weight: normal;
  padding-left: 20px !important;
  padding-right: 20px;
  line-height: 35px;
  margin-left: 20px;
  margin-right: 20px;
  border-bottom: 1px #d3d5db dotted;
}
.page-menu-item a {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  line-height: 24px;
}
.page-menu-item:hover {
  background-color: #dbeef7;
  font-weight: bold;
  color: #002f51;
  padding-left: 20px !important;
  padding-right: 20px;
  line-height: 34px;
  min-height: 24px;
  border-bottom: 1px white dotted;
}
.nav > li > a {
  margin-left: -20px;
  padding-left: 40px;
  padding-right: 40px;
  margin-right: -20px;
  line-height: 35px;
  color: #5b6069;
}
.nav > li > div > a {
  line-height: 35px;
  color: #5b6069;
  text-decoration: none;
}
.nav > li > a:hover {
  background-color: #dbeef7;
  color: #002f51;
}
.nav > li > a:active {
  background-color: #dbeef7;
}
.nav > li > a:visited {
  background-color: #dbeef7;
}
.nav > li > div > a:hover {
  background-color: #dbeef7;
  color: #002f51;
  text-decoration: none;
}
.nav > li > div > a:active {
  background-color: #dbeef7;
  text-decoration: none;
}
.nav > li > div > a:visited {
  background-color: #dbeef7;
  text-decoration: none;
}
.page-menu-item-link:before {
  font-family: 'cevi-icon-font';
  content: "\e904";
  float: left;
  color: #5b6069;
  font-size: 10px;
  font-style: normal;
  padding-right: 12px;
  cursor: pointer;
}
.page-menu-item-link:before {
  font-family: 'cevi-icon-font';
  content: "\e902";
  float: left;
  color: #5b6069;
  font-size: 8px;
  font-style: normal;
  padding-right: 5px;
  cursor: pointer;
}
.page-menu-item-link.collapsed:before {
  font-family: 'cevi-icon-font';
  content: "\e904";
  float: left;
  color: #5b6069;
  font-size: 12px;
  font-style: normal;
  padding-right: 12px;
  cursor: pointer;
}
.page-menu-item:active {
  background-color: #dbeef7;
  font-weight: bold;
  padding-left: 20px !important;
  padding-right: 20px;
  line-height: 30px;
  min-height: 24px;
  border-bottom: 1px #d3d5db dotted;
}
.page-menu-item-active {
  background-color: #dbeef7;
  font-weight: bold;
  color: #002f51;
  padding-left: 20px !important;
  padding-right: 20px;
  line-height: 34px;
  min-height: 24px;
  border-bottom: 1px white dotted;
}
.page-menu-subitem {
  background-color: #fff;
  font-size: 12px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: -20px;
  margin-right: -20px;
  font-weight: normal;
  min-height: 24px;
}
.page-menu-subitem:hover {
  background-color: #fff;
  font-size: 12px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: -20px;
  margin-right: -20px;
  font-weight: normal;
  font-weight: bold;
  min-height: 24px;
}
body {
  scrollbar-base-color: #ff0000;
  scrollbar-base-color: #C0C0C0;
  scrollbar-3dlight-color: #C0C0C0;
  scrollbar-highlight-color: #C0C0C0;
  scrollbar-track-color: #EBEBEB;
  scrollbar-arrow-color: black;
  scrollbar-shadow-color: #C0C0C0;
  scrollbar-dark-shadow-color: #C0C0C0;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  margin-right: 3px;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #5b6069;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
  background: #d3d5db;
}
.no-mobile {
  /* Handle */
}
.no-mobile body {
  scrollbar-base-color: #ff0000;
  scrollbar-base-color: #C0C0C0;
  scrollbar-3dlight-color: #C0C0C0;
  scrollbar-highlight-color: #C0C0C0;
  scrollbar-track-color: #EBEBEB;
  scrollbar-arrow-color: black;
  scrollbar-shadow-color: #C0C0C0;
  scrollbar-dark-shadow-color: #C0C0C0;
}
.no-mobile ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  margin-right: 3px;
}
.no-mobile ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.no-mobile ::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #5b6069;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.no-mobile ::-webkit-scrollbar-thumb:window-inactive {
  background: #d3d5db;
}
hr {
  margin-top: 10px;
  margin-bottom: 3px;
  border: 0;
  border-top: 1px solid #d3d5db;
}
.list-group-item {
  border: none;
  padding-top: 0px;
}
p,
b {
  -ms-word-break: break-all;
  word-break: break-all;
  /* Non standard for webkit */
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.menu-link {
  color: #5b6069;
}
.menu-link:hover {
  color: white !important;
}
.menu-link:visited,
.menu-link:link,
.menu-link:active {
  text-decoration: none;
}
.active-link {
  color: white !important;
}
.row {
  margin: 0;
}
.MenuTitle {
  padding-left: 25px !important;
  padding-top: 16px;
  padding-bottom: 10px;
  padding-right: 10px;
  margin-bottom: 15px;
  padding-left: 15px;
  color: #5b6069;
  font-size: 17px;
}
h1 {
  font-family: Helvetica, sans-serif;
  color: #d7191b;
  font-size: 2.5rem;
}
h2 {
  margin-top: 0px !important;
  font-family: 'LatoLatinWeb';
  font-size: 2rem !important;
  color: #007cb4 !important;
  font-weight: 400;
}
h3 {
  margin-top: 0px !important;
  font-family: 'LatoLatinWeb';
  font-size: 1.75rem !important;
  color: #007cb4 !important;
  font-weight: normal;
}
h4 {
  font-family: 'LatoLatinWeb';
  font-size: 1.5rem !important;
  color: #5b6069 !important;
  font-weight: bold;
}
.ui-label {
  font-size: 12px;
  color: #5b6069;
  line-height: 18px;
  font-weight: bold;
}
.ui-label-panel {
  font-size: 12px;
  color: #fff;
  line-height: 18px;
  font-weight: bold;
}
.panel-body-text {
  color: #fff;
  font-size: 12px;
  font-weight: normal;
}
.mainheader {
  border-bottom: 5px solid #d7191b;
  margin-right: 15px;
  color: #d7191b;
}
.heading-title {
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 0px;
}
.subheading-title {
  padding-left: 10px;
}
.panel-heading-list-header {
  background: #5b6069;
  /* For browsers that do not support gradients */
  background: linear-gradient(#676a75, #5f626e);
  /* Standard syntax */
  border-top: 1x solid #d3d5db !important;
  height: 40px;
}
.panel-dashboard {
  box-sizing: border-box;
  display: grid;
  width: 100vw;
  height: 100vh;
  grid-template: ". .           .            ." 1.5fr ". panel-title panel-title  ." auto ". panel-left  panel-right  ." 6fr ". .           .            ." 2.5fr / 18fr 18fr 46fr 18fr;
}
.panel-title {
  grid-area: panel-title;
}
.panel-left {
  grid-area: panel-left;
}
.panel-right {
  grid-area: panel-right;
}
.panel-title {
  padding-left: 0.3em;
  border-bottom: 5px solid #d7191b;
}
.panel-left {
  background-color: #4fa9d1;
}
.panel-left,
.panel-right {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
}
.navbuttons {
  position: fixed;
}
.icon-toolbar {
  border: 1px solid #5b6069;
  color: #5b6069;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  background: transparent;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-height: 800px) {
  .icon-toolbar {
    height: 40px;
    width: 40px;
  }
}
.icon-toolbar-image {
  font-size: 20px;
  position: relative;
  height: 45px;
  text-align: center;
  text-decoration: none;
  line-height: 45px;
}
@media screen and (max-height: 800px) {
  .icon-toolbar-image {
    font-size: 16px;
    position: relative;
    height: 45px;
    line-height: 35px;
  }
}
.icon-toolbar-image > i {
  cursor: pointer;
}
.icon-toolbar:hover {
  background: #4fa9d1;
  color: #fff;
  border: 1px solid #4fa9d1;
  text-decoration: none !important;
}
.icon-toolbar-active {
  background: #4fa9d1;
  color: #fff;
  border: 1px solid #4fa9d1;
}
.icon-toolbar-active ~ .toolbar-label {
  color: #4fa9d1;
}
.icon-toolbar:hover ~ .toolbar-label {
  color: #4fa9d1;
}
.toolbar-label {
  font-size: 14px;
  color: #5b6069;
  width: 100%;
  margin-top: 5px;
  text-align: center;
}
.icon-large {
  margin: 0 auto;
  border: 3px solid #fff;
  color: #fff;
  border-radius: 50%;
  height: 102px;
  width: 102px;
  background: transparent;
  margin-top: 30px;
}
@media screen and (max-width: 1150px) {
  .icon-large {
    height: 35px;
    width: 35px;
    border: 3px solid #fff;
    margin-top: 0px;
    float: left;
  }
}
@media screen and (min-width: 968px) and (max-width: 1512px) {
  .icon-large {
    height: 60px;
    width: 60px;
    border: 3px solid #fff;
    margin-top: 30px;
  }
}
@media screen and (max-width: 990px) {
  .col-icon-image {
    height: 50px;
  }
}
.large-label {
  font-size: 14px;
  color: #fff;
  width: 82px;
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
  margin-top: 5px;
  word-break: normal;
}
@media screen and (max-width: 968px) {
  .large-label {
    width: 60px;
    font-size: 12px;
    float: right;
    padding-top: 5px;
    text-align: center;
  }
}
@media screen and (min-width: 968px) and (max-width: 1512px) {
  .large-label {
    width: 60px;
    font-size: 12px;
    padding-top: 5px;
    text-align: center;
  }
}
.icon-large:hover {
  background: #fff;
  color: #4fa9d1;
}
.icon-large-image {
  font-size: 42px;
  position: relative;
  height: 102px;
}
@media screen and (max-width: 968px) {
  .icon-large-image {
    font-size: 14px;
  }
}
@media screen and (min-width: 968px) and (max-width: 1512px) {
  .icon-large-image {
    font-size: 24px;
  }
}
.icon-large-image > i {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 968px) {
  .icon-large-image > i {
    top: 15%;
  }
}
@media screen and (min-width: 968px) and (max-width: 1512px) {
  .icon-large-image > i {
    top: 26%;
  }
}
.logo-dashboard {
  font-size: 48px;
  color: #d7191b;
}
@media screen and (max-width: 1150px) {
  .logo-dashboard {
    font-size: 32px;
  }
}
.logo {
  color: #d7191b;
  margin-left: 10px;
  font-size: 38px;
}
.menu-active {
  background: #4fa9d1;
  color: #fff;
  border: 1px solid #4fa9d1;
}
.cevi-modal {
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  display: grid;
  background-color: rgba(0, 0, 0, 0.3);
  grid-template: ". .         ." 30px ". container ." 420px ". .         ." 1fr / 1fr 300px 1fr;
}
@media only screen and (min-width: 600px) {
  .cevi-modal {
    grid-template: ". .         ." 30px ". container ." 420px ". .         ." 1fr / 1fr 460px 1fr;
  }
}
.cevi-modal-header,
.cevi-modal-content,
.cevi-modal-footer {
  background-color: #fff;
}
.cevi-modal-contentcontainer {
  grid-area: container;
  display: grid;
  grid-template: "header" 5rem "content" 1fr "footer" 60px;
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.45);
}
.cevi-modal-header {
  padding-left: 0.6em;
  background-color: #f0f0f2;
  grid-area: header;
  border-top: 3px #d7191b solid;
  border-bottom: 1px solid #d3d5db;
}
h2.cevi-modal-header-title {
  color: #d7191b;
  font-size: 2rem;
}
.cevi-modal-content {
  padding: 0.6em;
  grid-area: content;
}
.cevi-modal-footer {
  padding: 0 1.2em;
  grid-area: footer;
  border-top: 1px solid #d3d5db;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cevi__rbac__csam-info::before {
  content: url('assets/auth/csam-info.png');
}
.cevi__rbac__tooltip {
  margin-top: 4px;
  margin-left: 6px;
}
.cevi__rbac__tooltip:before {
  content: url('assets/auth/csam-info.png');
  padding: 0.5em 0 0 0;
}
.cevi__rbac__eid::before {
  content: url('assets/auth/eid.svg');
}
.cevi__rbac__named::before {
  content: url('assets/auth/named.svg');
}
.cevi__rbac__windows::before {
  content: url('assets/auth/windows.svg');
}
@font-face {
  font-family: 'InterVariable';
  src: url('../fonts/InterVariable_v4.1.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  /* variable font weight range */
  font-display: swap;
}
@font-face {
  font-family: 'GeistMono';
  src: url('../fonts/GeistMono_v1.4.0.1.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  --font-sans: 'InterVariable', "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: 'GeistMono', "Courier New", Courier, monospace;
  --red: #d7191b;
  --dark-blue: #002f51;
  --mid-blue: #007cb4;
  --light-blue: #4fa9d1;
  --pastel-blue: #dbeef7;
  --mid-light-blue: #7ac2f6;
  --dark-grey: #5b6069;
  --grey: #a7a9b3;
  --light-grey: #d3d5db;
  --pastel-grey: #f0f0f2;
  --white: #fff;
  --black: #000;
  --orange: #f07d18;
  --green: #7dc13a;
  --light-yellow: #f9f9f9bf;
  --border-color: #d0d0d0;
  --background-color: #eeeeee3f;
  --cevi-red: #d7191b;
  --notification-top-bar-background-color: #fcf8e6;
  --notification-top-bar-text-color: #9a821a;
  --mid-blue-hover: #004463;
  --top-bar-red: #6e0f10;
  --mid-yellow: #fff0c4;
  /*White variations*/
  --alabaster: #FAFAFA;
  --ivory: #FFFFF0;
  --ghost-white: #F8F8FF;
  --linen: #FAF0E6;
  --platinum: #E5E4E2;
  --silver: #C0C0C0;
  --light-silver: #D3D3D3;
  --moon-gray: #A6A6A6;
  --light-gray: #D3D3D3;
  --near-white: #E5E5E5;
  --white-smoke: #F5F5F5;
  --silver-gray: #999;
  --silver-gray-hover: #888;
  --silver-gray-active: #777;
  --azure: #F0FFFF;
  --dark-blue-rgb: 0, 47, 81;
  /* RGB values extracted from #002f51 */
  /* Gradients for base colors */
  --red-gradient: linear-gradient(135deg, var(--red) 0%, var(--cevi-red) 100%);
  --cevi-red-gradient: linear-gradient(135deg, var(--cevi-red) 0%, var(--top-bar-red) 100%);
  --dark-blue-gradient: linear-gradient(135deg, var(--dark-blue) 0%, var(--mid-blue) 100%);
  /* Enhanced Soft UI gradient for dark blue */
  --dark-blue-soft-gradient: linear-gradient(145deg, rgba(0, 47, 81, 0.95), rgba(0, 47, 81, 0.85));
  --mid-blue-gradient: linear-gradient(135deg, var(--mid-blue) 0%, var(--light-blue) 100%);
  --mid-blue-header-gradient: linear-gradient(140deg, #2b86c4, #3f9bcf);
  --mid-blue-subheader-gradient: linear-gradient(140deg, #3d9bcc, #66b5db);
  --light-blue-gradient: linear-gradient(135deg, #4fa9d1 0%, #5fb3d8 100%);
  --pastel-blue-gradient: linear-gradient(135deg, #dbeef7 0%, #7ac2f6 100%);
  --dark-grey-gradient: linear-gradient(135deg, var(--dark-grey) 0%, var(--grey) 100%);
  --grey-gradient: linear-gradient(135deg, var(--grey) 0%, var(--light-grey) 100%);
  --light-grey-gradient: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
  --pastel-grey-gradient: linear-gradient(135deg, var(--pastel-grey) 0%, var(--light-grey) 100%);
  --white-gradient: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.6) 100%);
  --black-gradient: linear-gradient(135deg, var(--black) 0%, var(--dark-grey) 100%);
  --orange-gradient: linear-gradient(135deg, var(--orange) 0%, var(--mid-yellow) 100%);
  --green-gradient: linear-gradient(135deg, var(--green) 0%, var(--pastel-grey) 100%);
  --light-yellow-gradient: linear-gradient(135deg, var(--light-yellow) 0%, var(--mid-yellow) 100%);
  --mid-yellow-gradient: linear-gradient(135deg, var(--mid-yellow) 0%, var(--light-yellow) 100%);
  --mid-blue-hover-gradient: linear-gradient(135deg, var(--mid-blue-hover) 0%, var(--mid-blue) 100%);
  --top-bar-red-gradient: linear-gradient(135deg, var(--top-bar-red) 0%, var(--cevi-red) 100%);
  /* Utility gradients for UI elements */
  --notification-top-bar-background-gradient: linear-gradient(135deg, var(--notification-top-bar-background-color) 0%, var(--light-yellow) 100%);
  --notification-top-bar-text-gradient: linear-gradient(135deg, var(--notification-top-bar-text-color) 0%, var(--top-bar-red) 100%);
  --background-color-gradient: linear-gradient(135deg, var(--background-color) 0%, rgba(255, 255, 255, 0) 100%);
  --border-radius-global: 0.55rem;
  --soft-bg: #f0f0f3;
  --soft-shadow-light: rgba(255, 255, 255, 0.7);
  --soft-shadow-dark: rgba(174, 174, 192, 0.6);
  /* soft-tuning variables for the inset effect */
  --cevi-bottom-inset-y: -0.4px;
  --cevi-bottom-inset-blur: 0.6px;
  --cevi-bottom-inset-alpha: 0.04;
  /* even softer */
  --cevi-after-height: 0.35rem;
  /* slightly smaller */
  --cevi-after-edge-alpha: 0.08;
  /* softer */
  --cevi-after-mid-alpha: 0.01;
  /* nearly imperceptible */
  --header-font-size: clamp(1.25rem, 2vw, 1.5rem);
  --bs-card-height: 100%;
  --accent-primary: #2563eb;
  /* Blue: headers, buttons, active project tag */
  --accent-secondary: #10b981;
  /* Green: status indicators (optional) */
  --background-page: #f9fafb;
  /* Light gray: entire page background */
  --card-background: #ffffff;
  /* White: content cards, panels */
  --text-main: #111827;
  /* Dark gray: main text */
  --bs-card-cap-bg: var(--soft-bg);
  --active-navigation-bg: linear-gradient(140deg, #2b86c4, #3f9bcf);
}
/* Apply the variable font globally and provide a small utility class for monospace usage */
body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mono {
  font-family: var(--font-mono);
}
:root {
  /* Afgeleiden (optioneel) */
  --chart-bg: var(--white);
  --chart-grid: var(--light-grey);
  --chart-font: var(--dark-grey);
  --chart-tooltip-bg: var(--pastel-grey);
  --chart-tooltip-border: var(--grey);
  --chart-focus-outline: var(--mid-blue);
}
.cevi-chart {
  font-family: inherit;
  background: var(--chart-bg);
  color: var(--chart-font);
}
.cevi-chart .e-legend {
  background: var(--pastel-grey);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 4px 6px;
}
.cevi-chart .e-legend-item .e-legend-text {
  font-size: 0.75rem;
}
/* Tooltip */
.cevi-chart .e-tooltip-wrap {
  background: var(--chart-tooltip-bg) !important;
  border: 1px solid var(--chart-tooltip-border) !important;
  color: var(--dark-blue) !important;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.15) !important;
}
.cevi-chart .e-tooltip-wrap .e-tip-content {
  font-size: 0.75rem !important;
  line-height: 1.25 !important;
}
/* Grid / axes */
.cevi-chart .e-chart .e-axis-line,
.cevi-chart .e-chart .e-major-tick,
.cevi-chart .e-chart .e-major-grid {
  /*stroke: var(--light-grey) !important*/
  stroke: red !important;
}
.cevi-chart .e-chart .e-axis-label {
  fill: var(--dark-grey) !important;
  font-size: 0.7rem !important;
}
/* Focus (toegankelijkheid) */
.cevi-chart .e-chart:focus-visible,
.cevi-chart .e-accumulationchart:focus-visible {
  outline: 2px solid var(--chart-focus-outline) !important;
  outline-offset: 2px;
}
/* Verwijder default series hover glow indien gewenst */
.cevi-chart .e-chart .e-series,
.cevi-chart .e-accumulationchart .e-accumulation-series {
  filter: none;
}
.cevi__navigation {
  height: calc(100dvh - 5rem);
  display: flex;
  flex-flow: column;
  grid-area: navigation;
  min-width: 100px;
  flex: 1 1 auto;
  overflow-y: auto;
}
.menu-link .icon-toolbar:hover {
  background-color: var(--mid-blue) !important;
  color: white;
}
.menu-link.active .icon-toolbar {
  background-color: var(--mid-blue) !important;
  color: white;
}
.icon-nav-btn .icon-toolbar.active-link {
  background-color: var(--mid-blue) !important;
}
.icon-nav-btn .icon-toolbar:hover {
  background-color: var(--mid-blue) !important;
}
.icon-nav-btn .icon-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #5b6069;
  color: #5b6069;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  background: transparent;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.icon-nav-btn .icon-toolbar .menu-link .icon-toolbar-image .nav-icon {
  height: 45px;
  line-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-nav-btn .icon-toolbar:hover {
  background-color: #4fa9d1;
  border: 1px solid #4fa9d1;
}
.icon-nav-btn .icon-toolbar:hover .menu-link {
  color: #fff;
}
@media screen and (max-height: 800px) {
  .icon-toolbar-image {
    font-size: 16px;
    position: relative;
    height: 45px;
    line-height: 35px;
  }
}
.color-white {
  color: white;
}
.grid-header {
  grid-area: header;
  border-top: 1px solid #d3d5db;
  color: #f0f0f2;
  line-height: 30px;
  background: #5b6069;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(#676a75, #5f626e);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#676a75, #5f626e);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#676a75, #5f626e);
  /* For Firefox 3.6 to 15*/
  background: linear-gradient(#676a75, #5f626e);
  /* Standard syntax */
  border-radius: 0px;
}
.grid-row {
  border-top: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid #f0f0f2;
  padding-bottom: 5px;
  line-height: 26px;
}
.grid-row:hover {
  background-color: #dbeef7;
  border-bottom: 1px solid #002f51;
  border-top: 1px solid #002f51;
}
.text-ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.toolbar-label,
body,
h2,
h3,
input,
textarea {
  font-family: inherit;
  font-size: 12px;
}
h2 {
  font-size: 20px !important;
  padding-top: 5px !important;
}
.ui-label {
  line-height: 18px;
  font-weight: 700;
}
.pointer {
  cursor: pointer;
}
.header,
.ui-label {
  border: none;
  width: auto;
  margin-top: 5px !important;
  color: var(--dark-grey) !important;
}
:root {
  display: flex;
  flex-flow: column;
  flex: 1 1 auto;
  overflow-y: auto;
  flex-direction: column;
}
:root {
  --bg: #e0e5ec;
  --shadow-dark: #b8bcc2;
  --shadow-light: #ffffff;
}
.cevi__wrapper {
  background: var(--background-page);
}
.main-container {
  display: grid;
  grid-template-areas: "sidebar header" "sidebar content";
  grid-template-rows: auto 1fr;
  grid-template-columns: auto 1fr;
  height: 100vh;
  overflow: hidden;
}
.main-header {
  grid-area: header;
  margin-inline-end: 0.3rem;
}
.main-sidebar {
  grid-area: sidebar;
  display: flex;
  min-height: 0;
}
.main-content {
  grid-area: content;
  overflow: auto;
  display: flex;
  min-height: 0;
}
.grid-container {
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  overflow: auto;
}
/* Selected element: main-body-content */
.main-body-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  margin-top: 0.3rem;
  margin-right: 0.3rem;
  margin-bottom: 0.5rem;
  border-radius: var(--border-radius-global);
  height: auto;
}
.layout-container {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  /* allow children to shrink */
  overflow: hidden;
  /* contain splitter overflow */
  padding-top: 0.5rem;
}
.cevi__container {
  display: grid;
  grid-template-columns: 100px calc(100vw - 100px);
  grid-template-rows: auto 1fr auto;
  grid-template-areas: 'header header' 'content content' 'footer footer';
  overflow: hidden;
  height: 100dvh;
  min-height: 100dvh;
  background: var(--shadow-light);
}
.cevi__header {
  grid-area: header;
  width: 100%;
  padding-inline: 1rem;
  padding-block: 0.75rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 0.75rem;
  background: var(--mid-blue-header-gradient);
  color: #fff;
  font-weight: 600;
  /* Soft shadow */
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.3), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
  border: none;
}
.cevi__header .menu_link .cevi__header__title {
  margin-bottom: 0.5em;
  padding-top: 0.3em;
  color: var(--white) !important;
  font-size: 30px !important;
  font-weight: 500;
}
.cevi__header .menu_link {
  color: #2c3e50;
  text-decoration: none;
}
.cevi__header .menu_link .cevi__header__title {
  margin-bottom: 0.5em;
  padding-top: 0.3em;
  font-size: 30px;
  font-weight: 500;
  color: #1f2937;
}
.cevi__content {
  display: flex;
  grid-area: content;
  flex-flow: column;
  position: relative;
  min-height: 0;
  height: -webkit-fill-available;
  margin-inline: 2rem;
  margin-bottom: 1rem;
  padding-inline: 1rem;
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-global);
  box-shadow: 4px 4px 12px var(--shadow-dark), -4px -4px 12px var(--shadow-light);
  transition: box-shadow 0.3s ease-in-out;
  margin-block: 1rem;
}
.cevi__content:hover {
  box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
}
.cevi-content-container {
  display: flex;
  flex-direction: row;
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: hidden;
  height: -webkit-fill-available;
  height: 100%;
}
.cevi-content-container .closed {
  width: 2vw;
  min-width: 2vw !important;
  border: none !important;
  margin: 0 !important;
}
.cevi-content-container .tree-container {
  grid-area: tree;
  border: 1px solid var(--border-color);
  display: flex;
  flex-flow: column;
  background-color: var(--background-color);
  height: 100%;
  height: -webkit-fill-available;
}
.cevi-content-container .tree-container .header {
  height: 2rem;
  margin: 0 1rem 1rem;
  z-index: 2;
}
.cevi-content-container .tree-container .content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  position: relative;
}
.cevi-content-container .content-container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  overflow: auto;
}
.cevi-content-container .content-container .body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  /* NhCard will manage its own scrolling */
}
.selected-item {
  font-weight: bold;
  font-size: 0.9rem;
}
.search_container {
  align-items: baseline;
  white-space: nowrap;
}
.search_container label {
  text-align: right;
  color: var(--light-blue);
  font-weight: 700;
  margin-bottom: 0;
}
div.tree div.tree {
  margin-left: 1rem;
}
.loading_container,
.tree_list {
  display: flex;
  flex-flow: column;
  min-width: 0;
  height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
}
.tree_reset {
  border-bottom: 1px solid var(--light-grey);
}
.niveau {
  min-width: 30px;
  min-height: 20px;
  border-radius: 20%;
  color: var(--white);
  text-align: center;
  line-height: 20px;
  align-self: center;
  overflow: hidden;
  font-size: 12px;
  margin: 0 2px;
}
.niveau p {
  padding-left: 0px;
}
.link {
  text-decoration: none;
  color: var(--black);
  justify-content: center;
  width: 100%;
}
.btn-link-new-window {
  opacity: 0;
  transition: ease-in-out 250ms;
  color: var(--black);
}
.tree-container {
  flex: 1 1 auto;
  width: 100%;
}
.no-border {
  border: none !important;
}
.tree-container > .content {
  overflow: auto;
}
/* Container that spans the page minus header/footer */
.cevi-content-container {
  display: flex;
  width: 100%;
  flex-direction: row;
  min-height: 0;
  /* allow children to shrink */
  height: -webkit-fill-available;
  height: 100%;
}
/* Left tree column */
.cevi-content-container .tree-container {
  display: flex;
  flex-flow: column;
  min-height: 0;
  /* important */
  padding-inline-start: 0.2rem;
  border-radius: var(--border-radius-global);
}
/* Tree scrollable content area */
.cevi-content-container .tree-container .content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  position: relative;
  min-height: 0;
  /* important */
  overflow: auto;
}
/* Main right-hand content area (wrapper around the grid) */
.cevi-content-container .content-container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  /* take remaining space */
  min-height: 0;
  /* allow the grid inside to size correctly */
  overflow: hidden;
  /* grid will manage its own scrolling */
  width: 100%;
  height: 100%;
  height: -webkit-fill-available;
}
.cevi-content-container .content-container .body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
}
/*Make a thin scrollbar, some browser will create a thick this will overwrite the fat scrollbar*/
* {
  scrollbar-width: thin;
}
/* Thin scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  /* Thin scrollbar width */
  height: 8px;
  /* Thin scrollbar height */
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Light background for the track */
  border-radius: 10px;
  /* Rounded corners */
}
::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  /* Neutral color for the thumb */
  border-radius: 10px;
  /* Rounded corners */
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  /* Subtle shadow for depth */
}
::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
  /* Slightly darker color on hover */
}
/* Firefox-specific scrollbar styling */
html {
  scrollbar-width: thin;
  /* Thin scrollbar */
  scrollbar-color: #c1c1c1 #f1f1f1;
  /* Thumb and track colors */
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  padding-inline: 0;
}
.font-weight-bold {
  font-weight: bold;
}
.cursor-default * {
  cursor: default;
}
.cursor-auto * {
  cursor: auto;
}
.cursor-pointer * {
  cursor: pointer;
}
.cursor-wait * {
  cursor: wait;
}
.cursor-text * {
  cursor: text;
}
.cursor-move * {
  cursor: move;
}
.cursor-help * {
  cursor: help;
}
.cursor-not-allowed * {
  cursor: not-allowed;
}
.font-family {
  font-family: var(--global-font-family);
}
/* CONTAINS ALL THE GENERAL STYLES TO BE SHARED BETWEEN COMPONENTS */
/*#region This is the style for the beleidselement (tree,tags,...)*/
.beleidsElementen .niveau {
  min-width: 30px;
  min-height: 20px;
  border-radius: 20%;
  color: var(--white);
  text-align: center;
  line-height: 20px;
  align-self: center;
  overflow: hidden;
  font-size: 12px;
  margin: 0 2px;
}
.beleidsElementen .niveau p {
  padding-left: 0px;
}
.beleidsElementen .level-SD {
  background: var(--dark-grey);
  color: var(--white);
  justify-content: center;
  border-radius: 0.4rem;
  text-align: center;
}
.beleidsElementen .level-BD {
  background: var(--grey);
  color: var(--white);
  border-radius: 0.4rem;
  text-align: center;
}
.beleidsElementen .level-AP,
.beleidsElementen .level-IP {
  background: var(--light-grey);
  color: var(--black) !important;
  border-radius: 0.4rem;
  text-align: center;
}
.beleidsElementen .level-AC,
.beleidsElementen .level-A,
.beleidsElementen .level-SP {
  background: var(--pastel-grey);
  color: var(--black) !important;
  border-radius: 0.4rem;
  text-align: center;
}
.beleidsElementen .image-style {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px 0 0 15px;
  max-height: 10rem;
}
/*#endregion */
/*#region Global styles*/
.totalCalculationRow {
  background: linear-gradient(135deg, rgba(160, 155, 150, 0.6), rgba(160, 155, 150, 0.4));
  color: black;
}
.global-alertmessage .global-alertmessage-content .p-toast-detail {
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  font-size: 0.8rem;
}
.global-alertmessage .global-alertmessage-content .p-toast-detail:hover {
  font-size: 1em;
}
.global-alertmessage .p-toast-summary {
  font-size: 0.9rem;
}
.global-alertmessage .p-toast-icon-close {
  height: auto !important;
  width: 5rem !important;
  margin-top: 0.2rem;
  transition: all 0.2s ease-in-out;
}
.global-alertmessage .p-toast-icon-close:hover {
  transform: scale(140%);
  background: inherit !important;
}
.global-alertmessage .p-toast-icon-close:focus {
  box-shadow: none !important;
}
.divider {
  margin: 0 !important;
  margin-bottom: 0.5rem !important;
}
.divider-m-0 {
  margin: 0 !important;
  height: 0;
}
.global-sticky-footer {
  position: sticky;
  bottom: 0;
  background-color: #f7f7f7;
  z-index: 999 !important;
}
.global-absolute-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f7f7f7;
  z-index: 999 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.global-sticky-header {
  position: sticky;
  top: 0;
  background-color: #f7f7f7 !important;
  z-index: 999 !important;
}
.global-tree-header-text {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2em;
  color: var(--mid-blue);
}
.global-tree-header-text:hover {
  cursor: pointer;
}
.global-tree-expand {
  width: 33.5vw !important;
  max-width: 33.5vw !important;
  transition: 500ms all;
}
.global-tree-collapse {
  transition: 500ms all;
}
.no-margin-label {
  margin-bottom: 0;
}
/*#endregion */
/*#region This is the style for overriding components styles*/
/*Bootstrap*/
.bg-primary {
  background-color: var(--mid-blue) !important;
}
a.bg-primary:focus,
a.bg-primary:hover,
.bg-primary:focus {
  background-color: var(--mid-blue-hover) !important;
}
/*#endregion */
/*#region  Make it so that a table has a hover effect by using the hoverable-table on the table class and add the highlight class to the td*/
table.hoverable-table td.highlight {
  transition: all 0.2s ease-in-out;
}
table.hoverable-table td.highlight:hover {
  box-shadow: 0px 9px 4px -6px grey;
}
table.hoverable-table td.highlight:hover {
  cursor: pointer;
  color: var(--mid-blue);
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
  font-weight: bold;
}
table.hoverable-table :is(.selected),
.hoverable-table > .selected {
  background-color: var(--pastel-blue);
  color: var(--mid-blue);
  box-shadow: 0px 9px 4px -6px grey;
  font-weight: bold;
  position: relative;
  z-index: 10;
}
table.hoverable-table :is(.selected) > td,
.hoverable-table > .selected > td {
  background-color: var(--pastel-blue);
  color: var(--mid-blue);
  box-shadow: 0px 9px 4px -6px grey;
  font-weight: bold;
  z-index: 10;
}
.hoverable-table tr.hoverable-row {
  transition: all 0.2s ease-in-out;
}
.hoverable-table tr.hoverable-row:hover {
  box-shadow: 0px 9px 4px -6px grey;
  position: relative;
  z-index: 11;
}
.hoverable-table tr.hoverable-row:hover {
  cursor: pointer;
  color: var(--mid-blue);
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
}
/*Make it so that the table body has a scroll section to we can use infinite scrolling just add the class scrollable-table to the table*/
table.scrollable-table thead th {
  border: 1px solid #dee2e6;
  border-width: 1px 0 2px 0;
}
table.scrollable-table td,
.scrollable-table th {
  padding: 0.5rem 0.5rem 0 !important;
}
.scrollable-table th label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
}
table.scrollable-table {
  border-bottom: 1px solid #dee2e6;
  max-width: 100dvw;
  width: 100%;
}
table.scrollable-table tbody {
  display: block;
  max-height: 400px;
  overflow: auto;
}
table.scrollable-table thead,
table.scrollable-table tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}
table.scrollable-table tr:last-child {
  border-bottom: none;
  margin-bottom: 0.5rem;
}
.scrollable-table .loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 100;
}
/*#endregion */
.niveau {
  min-width: 30px;
  height: 20px;
  border-radius: 20%;
  text-align: center;
  line-height: 20px;
  align-self: center;
  overflow: hidden;
  font-size: 12px;
  margin: 0 2px;
}
.niveau p {
  padding-left: 0px;
}
.global-reset-btn {
  background-color: var(--mid-blue) !important;
  color: var(--white) !important;
  box-shadow: none !important;
  height: 2.1rem;
}
.level {
  background: var(--grey);
  justify-content: center;
  color: white;
}
.disable-form {
  opacity: 0.3;
  pointer-events: none;
}
.disable-selection {
  opacity: 0.7;
  pointer-events: none;
}
.w-5 {
  width: 5% !important;
}
.w-10 {
  width: 10% !important;
}
.w-15 {
  width: 15% !important;
}
.w-20 {
  width: 20% !important;
}
.w-25 {
  width: 25% !important;
}
.w-30 {
  width: 30% !important;
}
.w-35 {
  width: 35% !important;
}
.w-40 {
  width: 40% !important;
}
.w-45 {
  width: 45% !important;
}
.w-50 {
  width: 50% !important;
}
.w-55 {
  width: 55% !important;
}
.w-60 {
  width: 60% !important;
}
.w-65 {
  width: 65% !important;
}
.w-70 {
  width: 70% !important;
}
.w-75 {
  width: 75% !important;
}
.w-80 {
  width: 80% !important;
}
.w-85 {
  width: 85% !important;
}
.w-90 {
  width: 90% !important;
}
.w-95 {
  width: 95% !important;
}
.w-100 {
  width: 100% !important;
}
.validation-message {
  padding: 0;
}
.validation-message-container .validation-message {
  display: none;
}
.validation-message-container .validation-message:first-of-type {
  display: block;
}
.rz-splitter-horizontal > .rz-splitter-bar {
  background-color: var(--light-grey) !important;
  width: 0.8rem !important;
  margin-left: 0.1rem;
}
.rz-splitter-horizontal .rz-expand {
  opacity: 0 !important;
}
.rz-splitter-horizontal > .rz-splitter-bar-collapsed {
  background-color: var(--top-bar-red) !important;
}
.rz-splitter-horizontal > .rz-splitter-bar-collapsed .rz-expand {
  opacity: 1 !important;
}
.rz-splitter-horizontal > .rz-splitter-bar-collapsed:hover {
  opacity: 1 !important;
}
/*Treeview table */
.tree-level {
  min-width: 2rem;
  min-height: 1rem;
  color: var(--white);
  text-align: center;
  line-height: 20px;
  align-self: center;
  overflow: hidden;
  font-size: 12px;
  margin: 0 2px;
  display: inline-flex;
  justify-content: center;
  border-radius: 0.4rem;
}
.tree-level.level-1 {
  background: var(--dark-grey);
  color: var(--white);
  justify-content: center;
}
.tree-level.level-2 {
  background: var(--grey);
  color: var(--white);
}
.tree-level.level-3 {
  background: var(--light-grey);
  color: var(--black) !important;
}
.tree-level.level-4 {
  background: var(--pastel-grey);
  color: var(--black) !important;
}
.container-fluid-height {
  height: min(100dvh, 98%);
  display: flex;
  /* Converted to flex container. Child will align as column */
  flex-direction: column;
}
.card-height {
  min-height: 1dvh;
  flex: 1;
  /* Occupies any remaining space in the flex container after fixed sized children have taken their space */
  display: flex;
  /* Converted to flex container. Child will align as column */
  flex-direction: column;
  /* Aligns children as column */
}
.card-footer {
  /* This will ensure the footer is always at the bottom */
  margin-top: auto;
  flex-shrink: 0;
}
.line-height-0 {
  line-height: 0;
}
.line-height-1 {
  line-height: 1;
}
.line-height-2 {
  line-height: 2;
}
.line-height-3 {
  line-height: 3;
}
.border-right.border-md {
  border-right-width: 0 !important;
}
@media (min-width: 768px) {
  .border-right.border-md {
    border-right-width: 1px !important;
  }
}
.divider-0-height {
  height: 0 !important;
  width: 100%;
  margin: 0 !important;
  margin-bottom: 0.5rem !important;
}
label {
  font-size: 1rem;
  margin-bottom: 0;
}
.width-fit-content {
  width: fit-content;
}
.text-align-right {
  text-align: right;
}
.text-align-left {
  text-align: left;
}
.text-align-center {
  text-align: center;
}
.height-0 {
  height: 0;
}
.ps-6 {
  padding-left: 4rem !important;
}
.ps-7 {
  padding-left: 5rem !important;
}
.ps-8 {
  padding-left: 6rem !important;
}
.ps-9 {
  padding-left: 7rem !important;
}
.ps-10 {
  padding-left: 8rem !important;
}
.pe-6 {
  padding-left: 4rem !important;
}
.pe-7 {
  padding-left: 5rem !important;
}
.pe-8 {
  padding-left: 6rem !important;
}
.pe-9 {
  padding-left: 7rem !important;
}
.pe-10 {
  padding-left: 8rem !important;
}
.active-item {
  background-color: var(--mid-blue);
  color: white;
}
.card {
  height: 100%;
}
tbody,
td,
tfoot,
th,
thead,
tr {
  text-align: left;
}
/*TAB Styling*/
.tab-strip {
  display: flex;
  gap: 0.5rem;
  padding-left: 0.5rem;
}
/* === Base Tab === */
.tab-item {
  color: var(--primary);
  background: linear-gradient(145deg, #ffffff, #f0f4fa);
  border-radius: var(--soft-ui-border-radius, 0.6rem);
  padding: 0.5rem 1rem;
  min-width: 5rem;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.06);
}
/* === Hover === */
.tab-item:hover {
  background: linear-gradient(145deg, #f9fbfd, #eef2f7);
  color: var(--dark-blue);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 3px 3px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
/* === Active Tab === */
.tab-item.active-tab {
  background: var(--active-navigation-bg);
  color: #fff;
  font-weight: 600;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.3), inset -1px -1px 2px rgba(0, 0, 0, 0.1), 2px 2px 6px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}
/* === Tab Bar === */
.tab-bar {
  padding: 0 0.5rem;
}
/* === Content Area === */
.tab-content-area {
  background: linear-gradient(145deg, #f0f4fa, #e4e8ee);
  border-radius: var(--soft-ui-border-radius, 0.6rem);
  padding: 1rem;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05);
}
.header-style {
  background: var(--mid-blue-gradient);
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 0.8rem;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
}
.flip-switch label {
  --label-flipswitch-height: 2rem;
  height: var(--label-flipswitch-height);
  line-height: 0.5 !important;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  border: none !important;
}
.card-header:first-child,
.card {
  border-radius: var(--border-radius-global) !important;
}
/* ===========================
   #region TypeAHead MultiSelect - Soft UI Override
   =========================== */
/* Custom TypeAHeadMultiselect - Soft UI Styling */
.type-a-head-multiselect-input {
  position: relative;
  border: var(--soft-ui-border-width) solid var(--soft-ui-border-color) !important;
  border-radius: var(--soft-ui-border-radius) !important;
  box-shadow: inset 1px 1px 2px var(--soft-ui-inset-shadow-light), inset -1px -1px 2px var(--soft-ui-inset-shadow-dark), 1px 1px 2px var(--soft-ui-shadow-light-1) !important;
  background: var(--soft-ui-surface) !important;
  transition: all var(--soft-ui-transition-speed) var(--soft-ui-transition-easing);
  min-height: var(--soft-ui-height-control);
  cursor: pointer;
  /* Override base styles */
  border: 1px solid #dadada !important;
  border-radius: 0.8rem !important;
  background: white !important;
  /* Internal input element - transparent */
  /* Buttons (toggle, clear) */
  /* Count badge */
  /* Hover state - container level */
  /* Focus state - only when input is focused */
}
.type-a-head-multiselect-input .e-ripple-container {
  display: none !important;
}
.type-a-head-multiselect-input > input[type="text"],
.type-a-head-multiselect-input > input:not([type]) {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: inherit;
  font-weight: 500;
}
.type-a-head-multiselect-input > input[type="text"]:focus,
.type-a-head-multiselect-input > input:not([type]):focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.type-a-head-multiselect-input .toggle-btn,
.type-a-head-multiselect-input .clear-btn {
  color: inherit;
  opacity: var(--soft-ui-opacity-icon);
  transition: opacity var(--soft-ui-transition-speed) var(--soft-ui-transition-easing);
  background: transparent !important;
  border: 1px solid transparent !important;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
}
.type-a-head-multiselect-input .toggle-btn:hover:not(:disabled),
.type-a-head-multiselect-input .clear-btn:hover:not(:disabled) {
  opacity: var(--soft-ui-opacity-icon-hover);
  background: rgba(188, 188, 188, 0.1) !important;
}
.type-a-head-multiselect-input .toggle-btn:disabled,
.type-a-head-multiselect-input .clear-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.type-a-head-multiselect-input .bel-count-badge {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  color: var(--mid-blue) !important;
  border: 1px solid #dadada;
  box-shadow: inset 0.5px 0.5px 2px rgba(188, 188, 188, 0.2), inset -0.5px -0.5px 2px rgba(255, 255, 255, 0.6), 0.5px 0.5px 2px rgba(188, 188, 188, 0.15);
  font-weight: 600;
}
.type-a-head-multiselect-input:hover:not(:has(input:disabled)) {
  background: linear-gradient(145deg, #ffffff, var(--soft-ui-surface));
  box-shadow: inset 1px 1px 2px var(--soft-ui-shadow-light-2), inset -1px -1px 2px var(--soft-ui-shadow-dark-2), 2px 2px 6px var(--soft-ui-shadow-light-1), -2px -2px 6px var(--soft-ui-shadow-dark-2);
  transform: translateY(-1px);
  filter: brightness(1.02);
  cursor: pointer;
}
.type-a-head-multiselect-input:focus-within {
  outline: none !important;
  box-shadow: inset 1px 1px 2px var(--soft-ui-shadow-light-2), inset -1px -1px 2px var(--soft-ui-shadow-dark-2), 1px 1px 4px var(--soft-ui-shadow-light-3), -1px -1px 4px var(--soft-ui-shadow-dark-3), 0 0 0 2px rgba(var(--dark-blue-rgb), 0.15) !important;
  border-color: rgba(var(--dark-blue-rgb), 0.35) !important;
  background: var(--soft-ui-focus-bg) !important;
  transition: all var(--soft-ui-transition-speed) var(--soft-ui-transition-easing);
}
/* Popup/Dropdown list */
.type-a-head-multiselect-popup {
  background: #f8f9fa !important;
  padding: 0!important;
  /* Override base styles */
  border: none !important;
  border-radius: 1rem !important;
  margin-top: 0.5rem;
  max-height: 20rem;
  /* Scrollbar styling */
}
.type-a-head-multiselect-popup::-webkit-scrollbar {
  width: 8px;
}
.type-a-head-multiselect-popup::-webkit-scrollbar-thumb {
  background: rgba(188, 188, 188, 0.4);
  border-radius: 4px;
}
.type-a-head-multiselect-popup::-webkit-scrollbar-thumb:hover {
  background: rgba(188, 188, 188, 0.6);
}
.type-a-head-multiselect-popup::-webkit-scrollbar-track {
  background: transparent;
}
/* Select All header */
.type-a-head-selectall-header {
  background: #f8f9fa !important;
  border-bottom: 1px solid rgba(218, 218, 218, 0.5) !important;
  border-radius: 1rem 1rem 0 0;
}
.type-a-head-selectall-header label {
  font-weight: 600;
  cursor: pointer;
}
.type-a-head-selectall-header label input[type="checkbox"] {
  cursor: pointer;
}
/* List items */
.type-a-head-multiselect-item {
  transition: background 0.2s ease-in-out;
  border-radius: 0.5rem;
  margin: 2px 6px;
}
.type-a-head-multiselect-item:hover {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef) !important;
}
.type-a-head-multiselect-item label {
  cursor: pointer;
}
.type-a-head-multiselect-item label input[type="checkbox"] {
  cursor: pointer;
}
/* Separator */
.bel-separator {
  border-top: 1px solid rgba(218, 218, 218, 0.5) !important;
  margin: 6px 8px;
}
/* Empty state */
.type-a-head-multiselect-popup .empty {
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
  text-align: center;
}
/* #endregion */
/* ===========================
   #region YearPicker - Soft UI Override
   =========================== */
/* Year picker input container */
.year-picker-wrapper .year-input {
  border: 1px solid #dadada !important;
  border-radius: 0.8rem !important;
  box-shadow: inset 1px 1px 3px rgba(188, 188, 188, 0.3), inset -1px -1px 3px rgba(255, 255, 255, 0.8), 1px 1px 3px rgba(188, 188, 188, 0.2), -1px -1px 3px rgba(255, 255, 255, 0.5) !important;
  background: white !important;
  transition: all 0.2s ease-in-out;
  color: inherit;
  font-weight: 500;
  text-shadow: 0 0.5px 0.5px rgba(255, 255, 255, 0.6);
  min-height: 2.2rem;
  height: auto;
  /* Chevron icon styling */
  /* Placeholder styling */
  /* Hover state */
  /* Focus/Active state (when dropdown is open) */
}
.year-picker-wrapper .year-input .chevron {
  opacity: 0.7;
  transition: opacity 0.2s ease-in-out;
}
.year-picker-wrapper .year-input .chevron svg {
  color: inherit;
}
.year-picker-wrapper .year-input .placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
  font-weight: 400;
  opacity: 1 !important;
}
.year-picker-wrapper .year-input:hover {
  box-shadow: inset 2px 2px 5px #bcbcbc, inset -2px -2px 5px #ffffff, 2px 2px 5px #bcbcbc, -2px -2px 5px #ffffff !important;
  border-color: snow !important;
}
.year-picker-wrapper .year-input:hover .chevron {
  opacity: 1;
}
.year-picker-wrapper .year-input:focus,
.year-picker-wrapper .year-input:active {
  outline: none !important;
  box-shadow: inset 2px 2px 5px #bcbcbc, inset -2px -2px 5px #ffffff, 2px 2px 5px #bcbcbc, -2px -2px 5px #ffffff, 0 0 0 3px rgba(var(--mid-blue-rgb), 0.12) !important;
  border-color: rgba(var(--mid-blue-rgb), 0.4) !important;
}
/* Year dropdown popup */
.year-picker-wrapper .year-dropdown {
  background: #f8f9fa !important;
  border: none !important;
  border-radius: 1rem !important;
  box-shadow: 8px 8px 16px rgba(163, 177, 198, 0.2), -8px -8px 16px rgba(255, 255, 255, 0.8) !important;
  margin-top: 0.5rem;
  padding: 0.5rem;
  /* Navigation header */
  /* Year grid */
  /* Year items */
}
.year-picker-wrapper .year-dropdown .nav {
  background: transparent !important;
  border-bottom: 1px solid rgba(218, 218, 218, 0.5) !important;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0.5rem 0.75rem;
}
.year-picker-wrapper .year-dropdown .nav .nav-label {
  color: inherit;
  font-weight: 600;
}
.year-picker-wrapper .year-dropdown .nav .nav-btn {
  background: transparent !important;
  border: 1px solid transparent !important;
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  transition: all 0.2s ease-in-out;
  color: inherit;
  opacity: 0.7;
}
.year-picker-wrapper .year-dropdown .nav .nav-btn:hover {
  opacity: 1;
  background: rgba(188, 188, 188, 0.1) !important;
  border-color: transparent !important;
}
.year-picker-wrapper .year-dropdown .nav .nav-btn .icon {
  font-weight: bold;
}
.year-picker-wrapper .year-dropdown .year-grid {
  padding: 0.75rem 0.5rem;
}
.year-picker-wrapper .year-dropdown .year-item {
  border-radius: 0.5rem !important;
  transition: all 0.2s ease-in-out;
  background: transparent !important;
  color: inherit;
  font-weight: 500;
}
.year-picker-wrapper .year-dropdown .year-item:hover:not(.selected) {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef) !important;
  box-shadow: inset 0.5px 0.5px 2px rgba(188, 188, 188, 0.15), inset -0.5px -0.5px 2px rgba(255, 255, 255, 0.5);
}
.year-picker-wrapper .year-dropdown .year-item.selected {
  background: var(--mid-blue-gradient) !important;
  color: var(--ghost-white) !important;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(163, 177, 198, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  /* Override inline styles from component */
  --selected-bg: var(--mid-blue-gradient) !important;
  --selected-color: var(--ghost-white) !important;
}
/* #endregion */
/* ===========================
   #region TriCheckboxDropdown - Soft UI Override
   =========================== */
/* Tri-state select button - Soft UI styling */
.tri-state-select-btn {
  border: 1px solid #dadada !important;
  border-radius: 0.8rem !important;
  box-shadow: inset 1px 1px 3px rgba(188, 188, 188, 0.3), inset -1px -1px 3px rgba(255, 255, 255, 0.8), 1px 1px 3px rgba(188, 188, 188, 0.2), -1px -1px 3px rgba(255, 255, 255, 0.5) !important;
  background: snow !important;
  transition: all 0.2s ease-in-out;
  color: inherit !important;
  font-weight: 500;
  text-shadow: 0 0.5px 0.5px rgba(255, 255, 255, 0.6);
  min-height: 2.2rem;
  /* Arrow icon styling */
  /* Hover state */
  /* Open/Active state (when dropdown is open) */
}
.tri-state-select-btn .arrow-dwn {
  opacity: 0.7;
  transition: all 0.2s ease-in-out;
  color: inherit !important;
}
.tri-state-select-btn:hover {
  box-shadow: inset 2px 2px 5px #bcbcbc, inset -2px -2px 5px #ffffff, 2px 2px 5px #bcbcbc, -2px -2px 5px #ffffff !important;
  border-color: snow !important;
}
.tri-state-select-btn:hover .arrow-dwn {
  opacity: 1;
}
.tri-state-select-btn.open {
  box-shadow: inset 2px 2px 5px #bcbcbc, inset -2px -2px 5px #ffffff, 2px 2px 5px #bcbcbc, -2px -2px 5px #ffffff, 0 0 0 3px rgba(var(--mid-blue-rgb), 0.12) !important;
  border-color: rgba(var(--mid-blue-rgb), 0.4) !important;
}
.tri-state-select-btn.open .arrow-dwn {
  opacity: 1;
}
/* Description/selected values text */
.tri-state-description,
.tri-state-selected-values-text {
  color: inherit;
  font-weight: 500;
  text-shadow: 0 0.5px 0.5px rgba(255, 255, 255, 0.6);
}
/* Dropdown list popup */
.tri-state-list-items {
  background: #f8f9fa !important;
  border: none !important;
  border-radius: 1rem !important;
  box-shadow: 8px 8px 16px rgba(163, 177, 198, 0.2), -8px -8px 16px rgba(255, 255, 255, 0.8) !important;
  padding: 0.5rem !important;
  /* Scrollbar styling */
}
.tri-state-list-items::-webkit-scrollbar {
  width: 8px;
}
.tri-state-list-items::-webkit-scrollbar-thumb {
  background: rgba(188, 188, 188, 0.4);
  border-radius: 4px;
}
.tri-state-list-items::-webkit-scrollbar-thumb:hover {
  background: rgba(188, 188, 188, 0.6);
}
.tri-state-list-items::-webkit-scrollbar-track {
  background: transparent;
}
/* List items */
.tri-state-list-items .tri-state-item {
  transition: background 0.2s ease-in-out;
  border-radius: 0.5rem !important;
  padding: 0.25rem 0.5rem;
  margin: 2px 0;
}
.tri-state-list-items .tri-state-item:hover {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef) !important;
}
.tri-state-list-items .tri-state-item label {
  cursor: pointer;
  font-weight: 500;
}
.tri-state-list-items .tri-state-item label:hover {
  cursor: pointer;
}
.tri-state-list-items .tri-state-item label > span {
  color: inherit;
}
/* Tri-state checkbox icons */
.tri-state {
  transition: all 0.2s ease-in-out;
}
.tri-state.tri-state-checked {
  color: var(--mid-blue) !important;
  filter: drop-shadow(0 1px 2px rgba(0, 123, 180, 0.3));
}
.tri-state.tri-state-unchecked {
  color: #d7191b !important;
  filter: drop-shadow(0 1px 2px rgba(215, 25, 27, 0.3));
}
/* Indeterminate text styling */
.tri-state-indeterminate-text {
  opacity: 0.5;
  font-style: italic;
}
/* #endregion */
/* Bootstrap form-control class */
.form-control {
  position: relative;
  border: 1px solid rgba(var(--mid-blue-rgb), 0.25) !important;
  border-radius: 0.8rem !important;
  background: var(--soft-ui-surface) !important;
  box-shadow: inset 1px 1px 2px rgba(188, 188, 188, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
  min-height: 2.2rem;
  padding: 0.4rem 0.75rem;
  color: #333;
  font-weight: 500;
}
.form-control::placeholder {
  color: rgba(100, 110, 130, 0.6);
  font-weight: 400;
}
.form-control:hover:not(:disabled):not(:read-only) {
  background: linear-gradient(145deg, #f0f4fa, #e4e8ee);
  box-shadow: inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
}
.form-control:focus:not(:disabled):not(:read-only) {
  outline: none;
  border-color: rgba(var(--mid-blue-rgb), 0.4);
  box-shadow: 0 0 0 3px rgba(var(--mid-blue-rgb), 0.12), 0 0 6px rgba(var(--mid-blue-rgb), 0.18), inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6);
  background: #f8fafc;
}
.form-control:disabled,
.form-control:read-only {
  background: #f0f2f5 !important;
  color: rgba(120, 120, 120, 0.6);
  box-shadow: none !important;
  cursor: not-allowed;
  opacity: 0.6;
}
.form-control:focus {
  border-color: rgba(var(--mid-blue-rgb), 0.4) !important;
}
.border-secondary {
  border: none !important;
}
.nh-card-header {
  background: var(--mid-blue-gradient);
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 0.8rem;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
  background: var(--mid-blue-gradient) !important;
  font-size: clamp(1.25rem, 2vw, 1.5rem) !important;
  padding: 0.75rem 1.25rem !important;
  font-weight: 600!important;
  flex-shrink: 0!important;
  color: var(--white) !important;
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.05), inset -1px -1px 2px rgba(255, 255, 255, 0.6) !important;
  border-radius: var(--soft-ui-border-radius) !important;
  margin-inline: 1rem!important;
  margin-block: 1rem!important;
}
.nh-card-header:hover {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.08), -2px -2px 6px rgba(255, 255, 255, 0.8);
}
.nh-card-footer {
  background: var(--soft-ui-primary-bg);
  padding: 0.5rem 1rem;
  border-radius: 0.8rem;
  margin-top: auto;
  flex-shrink: 0;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
}
.filter-panel-header {
  background: var(--mid-blue-subheader-gradient) !important;
  border-radius: 0.8rem !important;
  padding: 0.5rem !important;
  font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
  font-weight: 500;
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.05), inset -1px -1px 2px rgba(255, 255, 255, 0.6) !important;
}
/*Radzen*/
.rz-splitter-pane {
  padding: 0.5rem;
}
.tri-state-select-btn {
  position: relative;
  border: var(--soft-ui-border-width) solid var(--soft-ui-border-color) !important;
  border-radius: var(--soft-ui-border-radius) !important;
  box-shadow: inset 1px 1px 2px var(--soft-ui-inset-shadow-light), inset -1px -1px 2px var(--soft-ui-inset-shadow-dark), 1px 1px 2px var(--soft-ui-shadow-light-1) !important;
  background: var(--soft-ui-surface) !important;
  transition: all var(--soft-ui-transition-speed) var(--soft-ui-transition-easing);
  min-height: var(--soft-ui-height-control);
  cursor: pointer;
}
.tri-state-select-btn:hover {
  border-color: inherit;
  border: var(--soft-ui-border-width) solid var(--soft-ui-border-color) !important;
  border-radius: var(--soft-ui-border-radius) !important;
  box-shadow: inset 1px 1px 2px var(--soft-ui-inset-shadow-light), inset -1px -1px 2px var(--soft-ui-inset-shadow-dark), 1px 1px 2px var(--soft-ui-shadow-light-1) !important;
  background: var(--soft-ui-surface) !important;
  transition: all var(--soft-ui-transition-speed) var(--soft-ui-transition-easing);
  min-height: var(--soft-ui-height-control);
}
:root {
  --rz-splitter-bar-color: black;
  --rz-splitter-bar-color-active: var(--dark-grey);
  --rz-splitter-bar-background-color: #E3EAF2;
  --rz-splitter-bar-background-color-active: #C2CBDC;
  --rz-splitter-bar-hover-opacity: 1;
}
.rz-splitter {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  min-height: 0;
  /* allow nested panes to shrink */
}
.rz-splitter > .rz-splitter-bar {
  flex: 0 0 auto;
  position: relative;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rz-splitter-bar-color);
  background-color: var(--rz-splitter-bar-background-color);
  opacity: 0.4;
  user-select: none;
}
.rz-splitter > .rz-splitter-bar > .rz-collapse {
  display: table;
}
.rz-splitter > .rz-splitter-bar > .rz-collapse:before {
  font-family: 'Material Icons';
  line-height: normal;
  display: table-cell;
}
.rz-splitter > .rz-splitter-bar > .rz-collapse:hover {
  cursor: pointer;
}
.rz-splitter > .rz-splitter-bar > .rz-resize {
  border: 1px solid var(--rz-splitter-bar-color);
  border-radius: 1px;
}
.rz-splitter > .rz-splitter-bar > .rz-expand {
  display: table;
}
.rz-splitter > .rz-splitter-bar > .rz-expand:before {
  font-family: 'Material Icons';
  line-height: normal;
  display: table-cell;
}
.rz-splitter > .rz-splitter-bar > .rz-expand:hover {
  cursor: pointer;
}
.rz-splitter > .rz-splitter-bar-resizable:hover {
  background-color: var(--rz-splitter-bar-background-color);
  opacity: var(--rz-splitter-bar-hover-opacity);
}
.rz-splitter > .rz-splitter-bar-resizable:active {
  background-color: var(--rz-splitter-bar-background-color-active);
  opacity: var(--rz-splitter-bar-hover-opacity);
}
.rz-splitter > .rz-splitter-bar-resizable:active > .rz-expand,
.rz-splitter > .rz-splitter-bar-resizable:active > .rz-resize,
.rz-splitter > .rz-splitter-bar-resizable:active > .rz-collapse {
  color: var(--rz-splitter-bar-color-active);
}
.rz-splitter > .rz-splitter-bar-resizable:active > .rz-resize {
  border: 1px solid var(--rz-splitter-bar-color-active);
}
.rz-splitter > .rz-splitter-bar-resizable:disabled {
  opacity: 0.2;
}
.rz-splitter-horizontal {
  flex-direction: row;
}
.rz-splitter-horizontal > .rz-splitter-bar {
  flex-direction: column;
  width: 8px;
}
.rz-splitter-horizontal > .rz-splitter-bar > .rz-collapse:before {
  content: 'arrow_left';
}
.rz-splitter-horizontal > .rz-splitter-bar > .rz-resize {
  height: 16px;
  margin: 2px 0;
}
.rz-splitter-horizontal > .rz-splitter-bar > .rz-expand:before {
  content: 'arrow_right';
}
.rz-splitter-horizontal > .rz-splitter-bar-resizable:hover {
  cursor: col-resize;
}
.rz-splitter-vertical {
  flex-direction: column;
}
.rz-splitter-vertical > .rz-splitter-bar {
  flex-direction: row;
  height: 8px;
}
.rz-splitter-vertical > .rz-splitter-bar > .rz-collapse:before {
  content: 'arrow_drop_up';
}
.rz-splitter-vertical > .rz-splitter-bar > .rz-resize {
  width: 16px;
  margin: 0 2px;
}
.rz-splitter-vertical > .rz-splitter-bar > .rz-expand:before {
  content: 'arrow_drop_down';
}
.rz-splitter-vertical > .rz-splitter-bar-resizable:hover {
  cursor: row-resize;
}
.rz-splitter-pane {
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
}
.rz-splitter-pane-collapsed {
  flex: 0 1 0% !important;
  overflow: hidden !important;
  display: block !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.rz-splitter-pane-lastresizable {
  flex: 1 1 auto;
}
.rz-splitter > .rz-splitter-bar > .rz-collapse {
  font-size: 1.6rem !important;
  color: var(--black);
}
.rz-splitter > .rz-splitter-bar > .rz-expand {
  font-size: 1.6rem !important;
  color: var(--black);
}
.rz-splitter > .rz-splitter-bar > .rz-resize {
  padding-top: 1rem!important;
  background: #fff !important;
  color: #6c757d !important;
  z-index: 10!important;
  height: 4rem!important;
  width: 1rem !important;
  visibility: visible !important;
  border: none;
}
.rz-splitter > .rz-splitter-bar > .rz-resize:before {
  content: "\e7e3" !important;
  font-family: "e-icons" !important;
  font-size: 14px!important;
}
/* ===========================
   #region Variables
   =========================== */
:root {
  --dialog-max: 100%;
  /* design token */
  --primary: var(--dark-blue);
  /* RGB variants for gradient effects (adjust values to match your actual colors) */
  --dark-blue-rgb: 25, 45, 85;
  /* Approximate - adjust to your --dark-blue */
  --mid-blue-rgb: 52, 152, 219;
  /* Approximate - adjust to your --mid-blue */
  --light-blue-rgb: 135, 206, 250;
  /* Approximate - adjust to your --light-blue */
  --mid-light-blue-rgb: 100, 180, 240;
  /* Approximate - adjust to your --mid-light-blue */
}
/* #endregion */
/* ===========================
   #region Modal styling
   =========================== */
.e-dlg-header,
.e-dlg-header * {
  color: inherit;
}
.e-popup.e-popup-open.e-dialog {
  width: auto;
  max-width: min(100dvw, var(--dialog-max));
  border: none;
  border-radius: var(--soft-ui-border-radius, 0.8rem);
  background: linear-gradient(145deg, #ffffff, #f0f4fa);
  padding: 0;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
}
.e-dialog .e-dlg-header {
  background: var(--mid-blue-gradient);
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 0.8rem;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.75rem 1rem;
  border: none;
}
.e-dialog .e-dlg-content {
  background: inherit;
  padding: 1.25rem;
  border-radius: 0.8rem;
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  border-radius: var(--soft-ui-border-radius, 0.8rem);
}
.e-dialog .e-footer-content {
  background: var(--soft-ui-primary-bg);
  padding: 0.5rem 1rem;
  border-radius: 0.8rem;
  margin-top: auto;
  flex-shrink: 0;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.e-footer-content .e-btn.e-primary.e-flat:not([disabled]) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  border: none;
  color: var(--button-text);
  background: var(--button-bg);
  /* Dynamic sizing */
  min-width: var(--soft-ui-button-min-width, auto);
  min-height: var(--soft-ui-button-min-height, auto);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
}
.e-btn.e-flat.e-primary,
.e-css.e-btn.e-flat.e-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  border: none;
  color: var(--button-text);
  background: var(--button-bg);
  /* Dynamic sizing */
  min-width: var(--soft-ui-button-min-width, auto);
  min-height: var(--soft-ui-button-min-height, auto);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
}
/* #endregion */
/* ===========================
   #region Tabs styling
   =========================== */
.e-tab.e-fill .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
.e-tab.e-fill .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon,
.e-tab.e-fill .e-tab-header .e-toolbar-item .e-tab-wrap {
  color: inherit;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-align: center;
  width: auto;
}
.e-tab .e-tab-header .e-toolbar-item.e-active {
  background: var(--active-navigation-bg);
  color: white;
  box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.68);
  -webkit-box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.68);
  -moz-box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.68);
}
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
  background: var(--active-navigation-bg);
  color: white;
  box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.68);
  -webkit-box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.68);
  -moz-box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.68);
}
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-text,
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-icon {
  color: var(--ghost-white) !important;
}
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap:hover {
  background: var(--active-navigation-bg);
  color: white;
  cursor: pointer;
  box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.68);
  -webkit-box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.68);
  -moz-box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.68);
}
/* #endregion */
/* ===========================
   #region Dropdowns styling
   =========================== */
/* Syncfusion DropDownList - Soft UI Styling */
.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper,
.e-ddl.e-lib.e-input-group.e-control-wrapper {
  position: relative;
  border: var(--soft-ui-border-width) solid var(--soft-ui-border-color) !important;
  border-radius: var(--soft-ui-border-radius) !important;
  box-shadow: inset 1px 1px 2px var(--soft-ui-inset-shadow-light), inset -1px -1px 2px var(--soft-ui-inset-shadow-dark), 1px 1px 2px var(--soft-ui-shadow-light-1) !important;
  background: var(--soft-ui-surface) !important;
  transition: all var(--soft-ui-transition-speed) var(--soft-ui-transition-easing);
  min-height: var(--soft-ui-height-control);
  cursor: pointer;
  /* Input element */
  /* Dropdown icons */
  /* Clear button */
  /* Hover state */
  /* Focus state */
  /* Disabled state */
}
.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper.e-input-focus::before,
.e-ddl.e-lib.e-input-group.e-control-wrapper.e-input-focus::before,
.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper.e-input-focus::after,
.e-ddl.e-lib.e-input-group.e-control-wrapper.e-input-focus::after {
  display: none !important;
}
.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper .e-ripple-container,
.e-ddl.e-lib.e-input-group.e-control-wrapper .e-ripple-container {
  display: none !important;
}
.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper .e-input,
.e-ddl.e-lib.e-input-group.e-control-wrapper .e-input {
  background: transparent !important;
  border: none !important;
  height: var(--soft-ui-height-control) !important;
  color: inherit;
  font-weight: var(--soft-ui-font-weight-medium);
  padding: 4px 10px;
}
.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper .e-input::placeholder,
.e-ddl.e-lib.e-input-group.e-control-wrapper .e-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-weight: var(--soft-ui-font-weight-normal);
}
.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper .e-input-group-icon,
.e-ddl.e-lib.e-input-group.e-control-wrapper .e-input-group-icon,
.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper .e-ddl-icon,
.e-ddl.e-lib.e-input-group.e-control-wrapper .e-ddl-icon {
  color: inherit;
  opacity: var(--soft-ui-opacity-icon);
  transition: opacity var(--soft-ui-transition-speed) var(--soft-ui-transition-easing);
}
.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper .e-clear-icon,
.e-ddl.e-lib.e-input-group.e-control-wrapper .e-clear-icon {
  color: inherit;
  opacity: var(--soft-ui-opacity-icon);
  transition: opacity var(--soft-ui-transition-speed) var(--soft-ui-transition-easing);
}
.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper .e-clear-icon:hover,
.e-ddl.e-lib.e-input-group.e-control-wrapper .e-clear-icon:hover {
  opacity: var(--soft-ui-opacity-icon-hover);
}
.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper:hover:not(.e-disabled),
.e-ddl.e-lib.e-input-group.e-control-wrapper:hover:not(.e-disabled) {
  background: linear-gradient(145deg, #ffffff, var(--soft-ui-surface));
  box-shadow: inset 1px 1px 2px var(--soft-ui-shadow-light-2), inset -1px -1px 2px var(--soft-ui-shadow-dark-2), 2px 2px 6px var(--soft-ui-shadow-light-1), -2px -2px 6px var(--soft-ui-shadow-dark-2);
  transform: translateY(-1px);
  filter: brightness(1.02);
  cursor: pointer;
}
.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper:hover:not(.e-disabled) .e-input-group-icon,
.e-ddl.e-lib.e-input-group.e-control-wrapper:hover:not(.e-disabled) .e-input-group-icon,
.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper:hover:not(.e-disabled) .e-ddl-icon,
.e-ddl.e-lib.e-input-group.e-control-wrapper:hover:not(.e-disabled) .e-ddl-icon {
  opacity: var(--soft-ui-opacity-icon-hover);
}
.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper.e-input-focus:not(.e-disabled),
.e-ddl.e-lib.e-input-group.e-control-wrapper.e-input-focus:not(.e-disabled) {
  box-shadow: inset 1px 1px 2px var(--soft-ui-shadow-light-2), inset -1px -1px 2px var(--soft-ui-shadow-dark-2), 1px 1px 4px var(--soft-ui-shadow-light-3), -1px -1px 4px var(--soft-ui-shadow-dark-3), 0 0 0 2px rgba(var(--dark-blue-rgb), 0.15) !important;
  border-color: rgba(var(--dark-blue-rgb), 0.35) !important;
  background: var(--soft-ui-focus-bg) !important;
  transition: all var(--soft-ui-transition-speed) var(--soft-ui-transition-easing);
}
.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper.e-disabled,
.e-ddl.e-lib.e-input-group.e-control-wrapper.e-disabled {
  opacity: var(--soft-ui-opacity-disabled) !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}
/* Dropdown popup */
.e-dropdown-popup,
.e-ddl.e-popup {
  background: #f8f9fa !important;
  border-radius: 1rem !important;
  border: none !important;
  padding: 0!important;
  padding: 0;
}
/* #endregion */
/* ===========================
   #region Multiselect styling (Enhanced with Internal Element Control)
   =========================== */
/* Syncfusion MultiSelect - Soft UI Styling */
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox {
  position: relative;
  border: var(--soft-ui-border-width) solid var(--soft-ui-border-color) !important;
  border-radius: var(--soft-ui-border-radius) !important;
  box-shadow: inset 1px 1px 2px var(--soft-ui-inset-shadow-light), inset -1px -1px 2px var(--soft-ui-inset-shadow-dark), 1px 1px 2px var(--soft-ui-shadow-light-1) !important;
  background: var(--soft-ui-surface) !important;
  transition: all var(--soft-ui-transition-speed) var(--soft-ui-transition-easing);
  min-height: var(--soft-ui-height-control);
  cursor: pointer;
  /* CRITICAL: Internal input elements - transparent, no styling */
  /* Dropdown icons */
  /* Clear button */
  /* Chips container */
  /* Chips/Tags */
  /* Chip close icon */
  /* Delimiter values */
  /* Hover state - ONLY on container */
  /* Focus state - ONLY on container */
  /* Disabled state */
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox.e-input-focus::before,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox.e-input-focus::after {
  display: none !important;
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-ripple-container {
  display: none !important;
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-searcher,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-searcher,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-input-filter {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  color: inherit;
  font-weight: 500;
  min-height: auto;
  width: auto;
  flex: 1;
  transition: none;
  float: none;
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-searcher::placeholder,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-searcher::placeholder,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-input-filter::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-weight: 400;
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-searcher:focus,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-searcher:focus,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-input-filter:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-searcher:-webkit-autofill,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-searcher:-webkit-autofill,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-input-filter:-webkit-autofill,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-searcher:-webkit-autofill:hover,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-searcher:-webkit-autofill:hover,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-input-filter:-webkit-autofill:hover,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-searcher:-webkit-autofill:focus,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-searcher:-webkit-autofill:focus,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-input-filter:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  background: transparent !important;
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-down-icon,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-input-group-icon {
  color: inherit;
  opacity: var(--soft-ui-opacity-icon);
  transition: opacity var(--soft-ui-transition-speed) var(--soft-ui-transition-easing);
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-clear-icon {
  color: inherit;
  opacity: var(--soft-ui-opacity-icon);
  transition: opacity var(--soft-ui-transition-speed) var(--soft-ui-transition-easing);
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-clear-icon:hover {
  opacity: var(--soft-ui-opacity-icon-hover);
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-chips-collection,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-chips-wrapper {
  background: transparent;
  padding: 2px;
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-chips,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-chipcontent {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  border: 1px solid #dadada;
  border-radius: 0.5rem;
  box-shadow: inset 0.5px 0.5px 2px rgba(188, 188, 188, 0.2), inset -0.5px -0.5px 2px rgba(255, 255, 255, 0.6), 0.5px 0.5px 2px rgba(188, 188, 188, 0.15);
  padding: 2px 6px;
  margin: 2px;
  font-size: 0.875rem;
  font-weight: 500;
  color: inherit;
  transition: all 0.2s ease-in-out;
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-chips-close,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-chips .e-chips-close {
  color: inherit;
  opacity: var(--soft-ui-opacity-icon);
  transition: opacity var(--soft-ui-transition-speed) var(--soft-ui-transition-easing);
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-chips-close:hover,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-chips .e-chips-close:hover {
  opacity: var(--soft-ui-opacity-icon-hover);
  background: transparent;
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-delim-values {
  font-weight: 500;
  color: inherit;
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox:hover:not(.e-disabled) {
  background: linear-gradient(145deg, #ffffff, var(--soft-ui-surface));
  box-shadow: inset 1px 1px 2px var(--soft-ui-shadow-light-2), inset -1px -1px 2px var(--soft-ui-shadow-dark-2), 2px 2px 6px var(--soft-ui-shadow-light-1), -2px -2px 6px var(--soft-ui-shadow-dark-2);
  transform: translateY(-1px);
  filter: brightness(1.02);
  cursor: pointer;
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox:hover:not(.e-disabled) .e-down-icon,
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox:hover:not(.e-disabled) .e-input-group-icon {
  opacity: var(--soft-ui-opacity-icon-hover);
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox.e-input-focus:not(.e-disabled) {
  box-shadow: inset 1px 1px 2px var(--soft-ui-shadow-light-2), inset -1px -1px 2px var(--soft-ui-shadow-dark-2), 1px 1px 4px var(--soft-ui-shadow-light-3), -1px -1px 4px var(--soft-ui-shadow-dark-3), 0 0 0 2px rgba(var(--dark-blue-rgb), 0.15) !important;
  border-color: rgba(var(--dark-blue-rgb), 0.35) !important;
  background: var(--soft-ui-focus-bg) !important;
  transition: all var(--soft-ui-transition-speed) var(--soft-ui-transition-easing);
}
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox.e-disabled {
  opacity: var(--soft-ui-opacity-disabled) !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}
/* MultiSelect popup */
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox + .e-popup,
.e-popup.e-multi-select-list-wrapper {
  background: #f8f9fa !important;
  border-radius: 1rem !important;
  border: none !important;
  padding: 0!important;
}
.e-multi-select-wrapper {
  padding: 0 !important;
}
/* ===========================
   #region Treeview styling - Soft UI Enhancement
   =========================== */
.e-treeview > .e-ul {
  overflow: initial !important;
}
.e-treeview {
  display: grid;
  padding: 0.75rem;
  gap: 0.4rem;
  font-size: 0.95rem;
  overflow-y: auto;
  overflow-x: clip;
}
/* === Base Row (Soft UI) === */
.e-treeview .e-fullrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.8rem;
  padding: 0.6rem 0.75rem;
  background: linear-gradient(145deg, #ffffff, #f0f4fa);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
  color: #333;
  font-weight: 500;
  border: none;
}
/* === Hover (Soft Lift) === */
.e-treeview .e-list-item > .e-fullrow:hover {
  background: linear-gradient(145deg, #f9fbfd, #eef2f7);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 3px 3px 8px rgba(0, 0, 0, 0.08);
  transform: translateX(2px);
  cursor: pointer;
}
/* === Active (Soft Depth + Blue Gradient) === */
.e-treeview .e-list-item.e-active > .e-fullrow {
  background: var(--active-navigation-bg);
  color: #fff;
  font-weight: 600;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.3), inset -1px -1px 2px rgba(0, 0, 0, 0.1), 2px 2px 6px rgba(0, 0, 0, 0.12);
  border-left: 4px solid #1f5a99;
  transform: translateX(3px);
}
/* === Sub-items (Indented Soft Style) === */
.e-treeview .e-ul .e-fullrow {
  background: linear-gradient(145deg, #f8fbff, #ecf3f9);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.04);
  padding-left: 2rem;
  font-weight: 400;
}
/* === Icons === */
.e-treeview .e-icon-expandable,
.e-treeview .e-icon-collapsible {
  opacity: 0.8;
  font-size: 0.85rem;
  color: #6b7280;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.e-treeview .e-list-item:hover .e-icon-expandable,
.e-treeview .e-list-item:hover .e-icon-collapsible {
  opacity: 1;
  transform: scale(1.15);
  color: #3a8dde;
}
.e-treeview .e-list-item.e-active .e-icon-expandable,
.e-treeview .e-list-item.e-active .e-icon-collapsible {
  color: #fff;
}
/* === List Structure === */
.e-treeview .e-list-item {
  margin: 0;
}
.e-treeview .e-ul {
  padding: 0.25rem 0 0.25rem 0.5rem;
}
/* #endregion */
/* ===========================
   #region Calendar styling
   =========================== */
.e-calendar .e-content td.e-selected.e-focused-date span.e-day {
  background: var(--mid-blue-gradient);
  color: var(--white);
}
.e-calendar .e-content.e-month td.e-today span.e-day {
  box-shadow: inset 2px 0 var(--pastel-blue), inset 0 2px var(--pastel-blue), inset -2px 0 var(--pastel-blue), inset 0 -2px var(--pastel-blue);
}
.e-calendar .e-btn.e-today.e-flat.e-primary,
.e-calendar .e-css.e-btn.e-today.e-flat.e-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  border: none;
  color: var(--button-text);
  background: var(--button-bg);
  /* Dynamic sizing */
  min-width: var(--soft-ui-button-min-width, auto);
  min-height: var(--soft-ui-button-min-height, auto);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
  --button-bg: linear-gradient(145deg, #6fa3d9, #5b93d0);
  --button-text: #fff;
}
/* #endregion */
/* Dialog-specific overrides */
.e-dialog.e-lib.e-dlg-modal.sf-grid-dlg.e-xlflmenu.e-popup.e-control.e-popup-open .e-footer-content .e-btn.e-flat:not([DISABLED]):not(.e-success):not(.e-danger):not(.e-warning):not(.e-info),
.e-dialog.e-lib.e-dlg-modal.sf-grid-dlg.e-xlflmenu.e-popup.e-control.e-popup-open .e-footer-content .e-btn.e-primary.e-flat:not([DISABLED]):not(.e-success):not(.e-danger):not(.e-warning):not(.e-info),
.e-dialog.e-lib.e-filter-popup.e-excelfilter.e-popup.e-control.e-popup-open .e-footer-content .e-btn.e-flat:not([DISABLED]):not(.e-success):not(.e-danger):not(.e-warning):not(.e-info),
.e-dialog.e-lib.e-filter-popup.e-excelfilter.e-popup.e-control.e-popup-open .e-footer-content .e-btn.e-primary.e-flat:not([DISABLED]):not(.e-success):not(.e-danger):not(.e-warning):not(.e-info) {
  color: var(--dark-blue) !important;
  min-height: 2rem !important;
}
.e-dlg-content button.e-filter-popup.e-excelfilter,
.e-xlflmenu button.e-control.e-btn.e-lib.e-flat {
  color: inherit !important;
  min-height: 1.7rem !important;
}
.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
  line-height: 1.6;
}
.e-dialog.e-lib.e-ccdlg.e-popup.e-control.e-popup-open .e-footer-content button:not([disabled]):not(.e-success):not(.e-danger):not(.e-warning):not(.e-info) {
  border-color: inherit !important;
  color: inherit !important;
}
.e-btn.e-primary.e-active,
.e-btn.e-primary,
.e-btn.e-primary:focus {
  background: var(--mid-blue-gradient);
  border-color: var(--mid-blue);
}
.e-btn.e-round.e-primary:hover {
  background: var(--mid-blue-gradient);
}
.e-radio:checked + label::before {
  background-color: inherit;
}
.form-check-input:checked {
  background-color: var(--mid-blue-gradient) !important;
  border-color: var(--mid-blue) !important;
}
.form-check-label:after {
  margin-top: 0.3rem !important;
}
input[type=radio] + label::after {
  left: 3px !important;
}
.form-check-label:before {
  margin-top: 0.3rem;
}
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
  color: var(--mid-blue);
}
/* #endregion */
/* ===========================
   #region Standard Form Controls - Soft UI Styling
   =========================== */
/* Bootstrap form-control class */
.form-control {
  position: relative;
  border: 1px solid rgba(var(--mid-blue-rgb), 0.25) !important;
  border-radius: 0.8rem !important;
  background: var(--soft-ui-surface) !important;
  box-shadow: inset 1px 1px 2px rgba(188, 188, 188, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
  min-height: 2.2rem;
  padding: 0.4rem 0.75rem;
  color: #333;
  font-weight: 500;
}
.form-control::placeholder {
  color: rgba(100, 110, 130, 0.6);
  font-weight: 400;
}
.form-control:hover:not(:disabled):not(:read-only) {
  background: linear-gradient(145deg, #f0f4fa, #e4e8ee);
  box-shadow: inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
}
.form-control:focus:not(:disabled):not(:read-only) {
  outline: none;
  border-color: rgba(var(--mid-blue-rgb), 0.4);
  box-shadow: 0 0 0 3px rgba(var(--mid-blue-rgb), 0.12), 0 0 6px rgba(var(--mid-blue-rgb), 0.18), inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6);
  background: #f8fafc;
}
.form-control:disabled,
.form-control:read-only {
  background: #f0f2f5 !important;
  color: rgba(120, 120, 120, 0.6);
  box-shadow: none !important;
  cursor: not-allowed;
  opacity: 0.6;
}
.form-control:focus {
  border-color: rgba(var(--mid-blue-rgb), 0.4) !important;
}
/* Native HTML input elements */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"] {
  position: relative;
  border: 1px solid rgba(var(--mid-blue-rgb), 0.25) !important;
  border-radius: 0.8rem !important;
  background: var(--soft-ui-surface) !important;
  box-shadow: inset 1px 1px 2px rgba(188, 188, 188, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
  min-height: 2.2rem;
  padding: 0.4rem 0.75rem;
  color: #333;
  font-weight: 500;
  width: 100%;
  width: -webkit-fill-available !important;
}
input[type="text"]::placeholder,
input[type="search"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
input[type="date"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="month"]::placeholder,
input[type="week"]::placeholder,
input[type="time"]::placeholder {
  color: rgba(100, 110, 130, 0.6);
  font-weight: 400;
}
input[type="text"]:hover:not(:disabled):not(:read-only),
input[type="search"]:hover:not(:disabled):not(:read-only),
input[type="email"]:hover:not(:disabled):not(:read-only),
input[type="password"]:hover:not(:disabled):not(:read-only),
input[type="number"]:hover:not(:disabled):not(:read-only),
input[type="tel"]:hover:not(:disabled):not(:read-only),
input[type="url"]:hover:not(:disabled):not(:read-only),
input[type="date"]:hover:not(:disabled):not(:read-only),
input[type="datetime-local"]:hover:not(:disabled):not(:read-only),
input[type="month"]:hover:not(:disabled):not(:read-only),
input[type="week"]:hover:not(:disabled):not(:read-only),
input[type="time"]:hover:not(:disabled):not(:read-only) {
  background: linear-gradient(145deg, #f0f4fa, #e4e8ee);
  box-shadow: inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
}
input[type="text"]:focus:not(:disabled):not(:read-only),
input[type="search"]:focus:not(:disabled):not(:read-only),
input[type="email"]:focus:not(:disabled):not(:read-only),
input[type="password"]:focus:not(:disabled):not(:read-only),
input[type="number"]:focus:not(:disabled):not(:read-only),
input[type="tel"]:focus:not(:disabled):not(:read-only),
input[type="url"]:focus:not(:disabled):not(:read-only),
input[type="date"]:focus:not(:disabled):not(:read-only),
input[type="datetime-local"]:focus:not(:disabled):not(:read-only),
input[type="month"]:focus:not(:disabled):not(:read-only),
input[type="week"]:focus:not(:disabled):not(:read-only),
input[type="time"]:focus:not(:disabled):not(:read-only) {
  outline: none;
  border-color: rgba(var(--mid-blue-rgb), 0.4);
  box-shadow: 0 0 0 3px rgba(var(--mid-blue-rgb), 0.12), 0 0 6px rgba(var(--mid-blue-rgb), 0.18), inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6);
  background: #f8fafc;
}
input[type="text"]:disabled,
input[type="search"]:disabled,
input[type="email"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="tel"]:disabled,
input[type="url"]:disabled,
input[type="date"]:disabled,
input[type="datetime-local"]:disabled,
input[type="month"]:disabled,
input[type="week"]:disabled,
input[type="time"]:disabled,
input[type="text"]:read-only,
input[type="search"]:read-only,
input[type="email"]:read-only,
input[type="password"]:read-only,
input[type="number"]:read-only,
input[type="tel"]:read-only,
input[type="url"]:read-only,
input[type="date"]:read-only,
input[type="datetime-local"]:read-only,
input[type="month"]:read-only,
input[type="week"]:read-only,
input[type="time"]:read-only {
  background: #f0f2f5 !important;
  color: rgba(120, 120, 120, 0.6);
  box-shadow: none !important;
  cursor: not-allowed;
  opacity: 0.6;
}
/* Textarea elements */
textarea,
textarea.form-control {
  position: relative;
  border: 1px solid rgba(var(--mid-blue-rgb), 0.25) !important;
  border-radius: 0.8rem !important;
  background: var(--soft-ui-surface) !important;
  box-shadow: inset 1px 1px 2px rgba(188, 188, 188, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
  min-height: 2.2rem;
  padding: 0.4rem 0.75rem;
  color: #333;
  font-weight: 500;
  min-height: 5rem;
  resize: vertical;
}
textarea::placeholder,
textarea.form-control::placeholder {
  color: rgba(100, 110, 130, 0.6);
  font-weight: 400;
}
textarea:hover:not(:disabled):not(:read-only),
textarea.form-control:hover:not(:disabled):not(:read-only) {
  background: linear-gradient(145deg, #f0f4fa, #e4e8ee);
  box-shadow: inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
}
textarea:focus:not(:disabled):not(:read-only),
textarea.form-control:focus:not(:disabled):not(:read-only) {
  outline: none;
  border-color: rgba(var(--mid-blue-rgb), 0.4);
  box-shadow: 0 0 0 3px rgba(var(--mid-blue-rgb), 0.12), 0 0 6px rgba(var(--mid-blue-rgb), 0.18), inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6);
  background: #f8fafc;
}
textarea:disabled,
textarea.form-control:disabled,
textarea:read-only,
textarea.form-control:read-only {
  background: #f0f2f5 !important;
  color: rgba(120, 120, 120, 0.6);
  box-shadow: none !important;
  cursor: not-allowed;
  opacity: 0.6;
}
select,
select.form-control {
  position: relative;
  border: 1px solid rgba(var(--mid-blue-rgb), 0.25) !important;
  border-radius: 0.8rem !important;
  background: var(--soft-ui-surface) !important;
  box-shadow: inset 1px 1px 2px rgba(188, 188, 188, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
  min-height: 2.2rem;
  padding: 0.4rem 0.75rem;
  color: #333;
  font-weight: 500;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}
select::placeholder,
select.form-control::placeholder {
  color: rgba(100, 110, 130, 0.6);
  font-weight: 400;
}
select:hover:not(:disabled):not(:read-only),
select.form-control:hover:not(:disabled):not(:read-only) {
  background: linear-gradient(145deg, #f0f4fa, #e4e8ee);
  box-shadow: inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
}
select:focus:not(:disabled):not(:read-only),
select.form-control:focus:not(:disabled):not(:read-only) {
  outline: none;
  border-color: rgba(var(--mid-blue-rgb), 0.4);
  box-shadow: 0 0 0 3px rgba(var(--mid-blue-rgb), 0.12), 0 0 6px rgba(var(--mid-blue-rgb), 0.18), inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6);
  background: #f8fafc;
}
select:disabled,
select.form-control:disabled,
select:read-only,
select.form-control:read-only {
  background: #f0f2f5 !important;
  color: rgba(120, 120, 120, 0.6);
  box-shadow: none !important;
  cursor: not-allowed;
  opacity: 0.6;
}
select:hover:not(:disabled):not(:read-only),
select.form-control:hover:not(:disabled):not(:read-only) {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  transform: translateY(-1px) scale(1.02);
}
/* Input groups (if used) */
.input-group .form-control {
  border-radius: 0.8rem 0 0 0.8rem !important;
}
.input-group .form-control:last-child {
  border-radius: 0 0.8rem 0.8rem 0 !important;
}
.input-group .form-control:only-child {
  border-radius: 0.8rem !important;
}
.input-group .input-group-text {
  position: relative;
  border: 1px solid rgba(var(--mid-blue-rgb), 0.25) !important;
  border-radius: 0.8rem !important;
  background: var(--soft-ui-surface) !important;
  box-shadow: inset 1px 1px 2px rgba(188, 188, 188, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
  min-height: 2.2rem;
  padding: 0.4rem 0.75rem;
  color: #333;
  font-weight: 500;
  border-radius: 0 0.8rem 0.8rem 0;
}
.input-group .input-group-text::placeholder {
  color: rgba(100, 110, 130, 0.6);
  font-weight: 400;
}
.input-group .input-group-text:hover:not(:disabled):not(:read-only) {
  background: linear-gradient(145deg, #f0f4fa, #e4e8ee);
  box-shadow: inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
}
.input-group .input-group-text:focus:not(:disabled):not(:read-only) {
  outline: none;
  border-color: rgba(var(--mid-blue-rgb), 0.4);
  box-shadow: 0 0 0 3px rgba(var(--mid-blue-rgb), 0.12), 0 0 6px rgba(var(--mid-blue-rgb), 0.18), inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6);
  background: #f8fafc;
}
.input-group .input-group-text:disabled,
.input-group .input-group-text:read-only {
  background: #f0f2f5 !important;
  color: rgba(120, 120, 120, 0.6);
  box-shadow: none !important;
  cursor: not-allowed;
  opacity: 0.6;
}
.input-group .input-group-text:first-child {
  border-radius: 0.8rem 0 0 0.8rem;
}
/* Search input specific styling  */
input[type="search"],
.search-input {
  position: relative;
  border: 1px solid rgba(var(--mid-blue-rgb), 0.25) !important;
  border-radius: 0.8rem !important;
  background: var(--soft-ui-surface) !important;
  box-shadow: inset 1px 1px 2px rgba(188, 188, 188, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
  min-height: 2.2rem;
  padding: 0.4rem 0.75rem;
  color: #333;
  font-weight: 500;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23666' d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 0.75rem center;
  background-size: 16px;
  padding-left: 2.5rem;
}
input[type="search"]::placeholder,
.search-input::placeholder {
  color: rgba(100, 110, 130, 0.6);
  font-weight: 400;
}
input[type="search"]:hover:not(:disabled):not(:read-only),
.search-input:hover:not(:disabled):not(:read-only) {
  background: linear-gradient(145deg, #f0f4fa, #e4e8ee);
  box-shadow: inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.06);
}
input[type="search"]:focus:not(:disabled):not(:read-only),
.search-input:focus:not(:disabled):not(:read-only) {
  outline: none;
  border-color: rgba(var(--mid-blue-rgb), 0.4);
  box-shadow: 0 0 0 3px rgba(var(--mid-blue-rgb), 0.12), 0 0 6px rgba(var(--mid-blue-rgb), 0.18), inset 1px 1px 2px rgba(160, 160, 160, 0.25), inset -1px -1px 2px rgba(255, 255, 255, 0.6);
  background: #f8fafc;
}
input[type="search"]:disabled,
.search-input:disabled,
input[type="search"]:read-only,
.search-input:read-only {
  background: #f0f2f5 !important;
  color: rgba(120, 120, 120, 0.6);
  box-shadow: none !important;
  cursor: not-allowed;
  opacity: 0.6;
}
input[type="search"]::-webkit-search-decoration,
.search-input::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
.search-input::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
.search-input::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration,
.search-input::-webkit-search-results-decoration {
  display: none;
}
.e-input-group {
  position: relative;
  border: var(--soft-ui-border-width) solid var(--soft-ui-border-color) !important;
  border-radius: var(--soft-ui-border-radius) !important;
  box-shadow: inset 1px 1px 2px var(--soft-ui-inset-shadow-light), inset -1px -1px 2px var(--soft-ui-inset-shadow-dark), 1px 1px 2px var(--soft-ui-shadow-light-1) !important;
  background: var(--soft-ui-surface) !important;
  transition: all var(--soft-ui-transition-speed) var(--soft-ui-transition-easing);
  min-height: var(--soft-ui-height-control);
  cursor: pointer;
}
.e-input-group:has(input:focus),
.e-input-group:has(.e-input:focus),
.e-input-group:focus-within {
  box-shadow: none !important;
  border: none !important;
}
.e-ddl.e-popup.e-resize .e-resizer-right {
  color: #6c757d !important;
}
.e-btn.e-flat:hover,
.e-btn:hover,
.e-flat:hover,
.e-btn.e-flat:focus,
.e-btn.e-flat:active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  border: none;
  color: var(--button-text);
  background: var(--button-bg);
  /* Dynamic sizing */
  min-width: var(--soft-ui-button-min-width, auto);
  min-height: var(--soft-ui-button-min-height, auto);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
}
.e-ddl.e-input-group .e-input-value {
  margin-inline-start: 0.5rem;
}
.e-schedule {
  border-radius: var(--soft-ui-border-radius);
}
.e-multi-select-wrapper .e-searcher input[type=text],
.e-multi-select-wrapper .e-multi-searcher input[type=text] {
  cursor: pointer;
}
.e-chip-list.e-chip,
.e-chip-list .e-chip {
  min-width: 3rem;
  min-height: 2rem;
  padding: 0.75rem 1rem;
  border-radius: 100vw;
}
.btn-primary-light-background {
  border-radius: 3px;
  border: none;
  height: 32px;
  margin-bottom: 1px;
  padding-left: 16px;
  padding-right: 16px;
  text-transform: uppercase;
  text-shadow: 0px 0px #000000;
  color: white;
  text-align: center;
  font-size: 12px;
  background: #5b6069;
  /* For browsers that do not support gradients */
  background: linear-gradient(#6f727d, #565963);
  /* Standard syntax */
}
@media screen and (max-width: 1150px) {
  .btn-primary-light-background {
    height: 28px;
    font-size: 10px;
  }
}
.btn-primary-light-background:hover {
  color: white;
  background: #5b6069;
  /* For browsers that do not support gradients */
  background: linear-gradient(#43444b, #34353c);
  /* For Safari 5.1 to 6.0 */
}
.btn-primary-dark-background {
  border-radius: 3px;
  height: 32px;
  padding-left: 16px;
  padding-right: 16px;
  text-transform: uppercase;
  text-shadow: 0px 0px #000000;
  color: white;
  text-align: center;
  font-size: 12px;
  background: #5b6069;
  /* For browsers that do not support gradients */
  background: linear-gradient(#6ebade, #64b0d4);
  /* Standard syntax */
  border: none;
}
.btn-primary-dark-background:hover {
  color: white;
  background: #5b6069;
  /* For browsers that do not support gradients */
  background: linear-gradient(#75d3ff, #75d3ff);
  /* For Safari 5.1 to 6.0 */
}
.btn-primary-dark-background-submenu {
  border-radius: 16px;
  border: none;
  height: 36px;
  padding-left: 16px;
  padding-right: 16px;
  text-transform: uppercase;
  text-shadow: 0px 0px #000000;
  color: white;
  text-align: center;
  font-size: 14px;
  background: #6ebade;
  margin-left: 5px;
  margin-right: 5px;
}
@media screen and (max-width: 1150px) {
  .btn-primary-dark-background-submenu {
    font-size: 10px;
    padding-left: 15px;
    padding-right: 0;
    width: 90%;
    margin-bottom: 10px;
  }
  .btn-primary-dark-background-submenu i {
    float: left;
    margin-right: 5px;
  }
}
@media screen and (max-height: 800px) {
  .btn-primary-dark-background-submenu {
    margin-left: 0;
    margin-right: 0;
    font-size: 12px;
  }
}
.btn-primary-dark-background-submenu:hover {
  text-shadow: 0px 0px #000000;
  color: white;
  background: #6ebade;
  /* For browsers that do not support gradients */
}
.btn-secondary-light-background {
  border-radius: 3px;
  height: 32px;
  padding-left: 16px;
  padding-right: 16px;
  text-transform: uppercase;
  color: white;
  text-align: center;
  font-size: 12px;
  background: #5b6069;
  /* For browsers that do not support gradients */
  background: linear-gradient(#b0b2bb, #9798a1);
  /* Standard syntax */
  border: none;
}
.btn-secondary-light-background:hover {
  color: white;
  background: #5b6069;
  /* For browsers that do not support gradients */
  background: linear-gradient(#8d8e96, #797a81);
  /* For Safari 5.1 to 6.0 */
}
.btn-secondary-dark-background {
  border-radius: 3px;
  height: 32px;
  padding-left: 16px;
  padding-right: 16px;
  text-transform: uppercase;
  text-shadow: 0px 0px #000000;
  color: #5b6069;
  text-align: center;
  font-size: 12px;
  background: #5b6069;
  /* For browsers that do not support gradients */
  background: linear-gradient(#f2f2f3, #d8d8da);
  /* Standard syntax */
  border: none;
}
.btn-secondary-dark-background:hover {
  color: #5b6069;
  background: #5b6069;
  /* For browsers that do not support gradients */
  background: linear-gradient(#f7f7f8, #e8e8e9);
  /* For Safari 5.1 to 6.0 */
}
.btn-invalid {
  border-style: outset;
  border-color: #d7191b;
  border-radius: 5px;
  height: 35px;
  margin-top: -1.5px;
}
.btn-right {
  float: right;
  margin-right: 20px !important;
}
.btn-right,
.btn-right2 {
  float: right;
  margin-right: 15px;
  background: #48A8D2;
  color: white !important;
  border: 1px solid #127AB7;
  margin-left: 2px !important;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 14px !important;
  border-radius: 5px;
}
.btn-right2 {
  background: #D6D7DC;
  margin-right: 5px;
  border: 1px solid #CCCFD4;
  color: #83868F !important;
}
button:disabled,
button:disabled:hover {
  background: #dfe1e4;
  cursor: not-allowed;
  color: #5b6069;
}
.btn-save {
  background-color: #7dc13a;
  color: #fff;
  border-radius: 3px;
  border: none;
  width: 26px;
  height: 26px;
  padding: 5px;
  font-size: 12px;
  margin-right: 3px;
}
.btn-save:hover {
  background-color: #b0db86;
  color: #fff;
  border-radius: 3px;
}
.btn-cancel {
  background-color: #d7191b;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 3px;
  border: none;
  padding: 5px;
  font-size: 12px;
  margin-right: 3px;
}
.btn-cancel:hover {
  background-color: #ee696a;
  color: #fff;
}
/* ===========================
   #region Button Styles
   =========================== */
.neu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  border: none;
  color: var(--button-text);
  background: var(--button-bg);
  /* Dynamic sizing */
  min-width: var(--soft-ui-button-min-width, auto);
  min-height: var(--soft-ui-button-min-height, auto);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
}
/* Apply to Syncfusion buttons */
.e-btn.e-flat,
.e-btn,
.e-flat,
.e-footer-content .e-btn.e-flat:not([DISABLED]):not(.e-success):not(.e-danger):not(.e-warning):not(.e-info) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  border: none;
  color: var(--button-text);
  background: var(--button-bg);
  /* Dynamic sizing */
  min-width: var(--soft-ui-button-min-width, auto);
  min-height: var(--soft-ui-button-min-height, auto);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
  color: inherit;
}
.e-css.e-btn.e-flat,
.e-footer-content .e-btn:hover.e-flat:not([DISABLED]):not(.e-success):not(.e-danger):not(.e-warning):not(.e-info) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  border: none;
  color: var(--button-text);
  background: var(--button-bg);
  /* Dynamic sizing */
  min-width: var(--soft-ui-button-min-width, auto);
  min-height: var(--soft-ui-button-min-height, auto);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
  color: inherit;
}
.e-tooltip:has(> button:disabled) {
  cursor: not-allowed !important;
  opacity: 0.45 !important;
  filter: grayscale(0.4) brightness(1.05) !important;
  box-shadow: none !important;
}
/* #endregion */
/* Text Styling for Colors */
.text-red {
  color: #d7191b;
}
.text-dark-blue {
  color: #002f51;
}
.text-mid-blue {
  color: #007cb4;
}
.text-light-blue {
  color: #4fa9d1;
}
.text-pastel-blue {
  color: #dbeef7;
}
.text-dark-grey {
  color: #5b6069;
}
.text-grey {
  color: #a7a9b3;
}
.text-light-grey {
  color: #d3d5db;
}
.text-pastel-grey {
  color: #f0f0f2;
}
.text-green {
  color: #7dc13a;
}
.text-orange {
  color: #f07d18;
}
.text-white {
  color: #fff;
}
.card {
  height: 100%;
  border: none;
  border-radius: 0.8rem;
  background: var(--soft-ui-primary-bg, #f9fafc);
  padding: 0.8rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  color: #1e293b;
  display: flex;
  flex: 1;
  flex-direction: column;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
}
.card.card-hoverable:hover {
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 3px 3px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.card-header {
  background: var(--mid-blue-gradient);
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 0.8rem;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
}
.card-body {
  background: inherit;
  padding: 1.25rem;
  border-radius: 0.8rem;
  flex: 1;
  overflow-y: auto;
}
.card-footer {
  background: var(--soft-ui-primary-bg);
  padding: 0.5rem 1rem;
  border-radius: 0.8rem;
  margin-top: auto;
  flex-shrink: 0;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.05), 2px 2px 6px rgba(0, 0, 0, 0.08);
}
.card-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.card-subtitle {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  margin-top: -0.375rem;
  margin-bottom: 0.5rem;
}
.card-link {
  color: var(--mid-blue);
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.card-link:hover {
  color: var(--mid-blue-hover);
  text-decoration: none;
}
.card-group > .card {
  border-radius: 0;
}
.card-group > .card:first-child {
  border-radius: 1rem 0 0 1rem;
}
.card-group > .card:first-child .card-header {
  border-radius: 1rem 0 0 0;
}
.card-group > .card:first-child .card-footer {
  border-radius: 0 0 0 1rem;
}
.card-group > .card:last-child {
  border-radius: 0 1rem 1rem 0;
}
.card-group > .card:last-child .card-header {
  border-radius: 0 1rem 0 0;
}
.card-group > .card:last-child .card-footer {
  border-radius: 0 0 1rem 0;
}
.card-group > .card:only-child {
  border-radius: 1rem;
}
.card-group > .card:only-child .card-header {
  border-radius: 1rem 1rem 0 0;
}
.card-group > .card:only-child .card-footer {
  border-radius: 0 0 1rem 1rem;
}
/*# sourceMappingURL=_cevi.css.map */