@charset "UTF-8";
@import url("https://fonts.googleapis.com/icon?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0&display=swap&icon_names=reorder,help,open_in_new,expand_more,expand_less,progress_activity,chevron_right,check_box_outline_blank,check_box,menu,close,key,assignment_add,article,attach_file,phone,search,account_circle,login,mail,arrow_back,arrow_forward,keyboard_double_arrow_left,keyboard_double_arrow_right,image,edit,delete_forever,delete,add,play_circle,download,filter_list");
.container, .container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.d-none {
  display: none !important;
}

/* Small devices (tablet, $breakpointSm and up) */
@media only screen and (min-width: 768px) {
  .container {
    max-width: 760px;
  }

  .d-sm-none {
    display: none !important;
  }

  .d-sm-block {
    display: block !important;
  }
}
/* Medium devices (laptop, $breakpointMd and up) */
@media only screen and (min-width: 992px) {
  .container {
    max-width: 980px;
  }

  .d-md-none {
    display: none !important;
  }

  .d-md-block {
    display: block !important;
  }
}
/* Large devices (laptop, $breakpointLg and up) */
@media only screen and (min-width: 1200px) {
  .container {
    max-width: calc(1070px + 40px * 2);
  }

  .d-lg-none {
    display: none !important;
  }

  .d-lg-block {
    display: block !important;
  }
}
/* Extralarge devices (desktop, $breakpointXl and up) */
@media only screen and (min-width: 1640px) {
  .container {
    max-width: calc(1400px + 40px * 2);
  }

  .d-xl-none {
    display: none !important;
  }

  .d-xl-block {
    display: block !important;
  }
}
.material-icons {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}
.material-icons.reorder {
  cursor: pointer;
}

:root {
  --color-bg: #00202B;
  --color-bg2: #003C50;
  --color-surface: #003C50;
  --color-surface-elevated: #00546E;
  --color-border: #00546E;
  --color-border-secondary: #FFF;
  --color-text-primary: #FFF;
  --color-text-secondary: #262626;
  --color-text-tertiary: #6e7681;
  --color-accent: #F9B000;
  --color-accent-hover: #8b5cf6;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-info: #3b82f6;
  --padding:24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  min-height: 100vh;
  padding: var(--padding);
  color: var(--color-text-primary);
}
body.app-login {
  background: var(--color-bg2);
}
body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

[class*=title-] {
  color: var(--color-text-primary);
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.title-h1 {
  font-size: 40px;
}

.title-h2 {
  font-size: 32px;
}

.title-h3 {
  font-size: 24px;
}

.title-h4 {
  font-size: 18px;
}

hgroup {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.field label {
  font-size: 14px;
}
.field input[type=text], .field input[type=time], .field input[type=search], .field input[type=password], .field input[type=date], .field input[type=datetime-local], .field input[type=email], .field input[type=number], .field input.search, .field textarea, .field select {
  border-radius: 8px;
  border: 1px solid var(--color-border);
  display: block;
  width: 100%;
  background: none;
  color: var(--color-text-primary);
}
.field input[type=text], .field input[type=time], .field input[type=search], .field input[type=password], .field input[type=date], .field input[type=datetime-local], .field input[type=email], .field input[type=number], .field input.search, .field select {
  padding: 16px;
}
.field textarea {
  padding: 16px;
}
.field select {
  padding: 8px 16px;
}
.field select[multiple] {
  padding: 16px;
  line-height: initial;
  height: initial;
}
.field-checkbox input[type=checkbox], .field-checkbox input[type=radio] {
  display: none;
}
.field-checkbox input[type=checkbox]:checked + label::before, .field-checkbox input[type=radio]:checked + label::before {
  content: "check_box";
  color: var(--color-text-primary);
}
.field-checkbox label {
  display: block;
  padding: 5px 0 5px 30px;
  position: relative;
  line-height: 15px;
  word-break: break-word;
}
.field-checkbox label::before {
  content: "check_box_outline_blank";
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  left: 5px;
  font-size: 18px;
}

.choices__inner {
  background: none !important;
  border-radius: 8px !important;
  border: 1px solid var(--color-border) !important;
}

.choices__list--dropdown {
  border-color: var(--color-border) !important;
  background: var(--color-surface) !important;
  border-radius: 0 0 8px 8px !important;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background: var(--color-border) !important;
}

.choices[data-type*=select-one]::after {
  border-color: var(--color-border) transparent transparent transparent !important;
}
.choices[data-type*=select-one] .choices__input {
  border-radius: 0 !important;
  border: none !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--color-text-primary) !important;
}

div[data-controller=needs-ticket], div[data-controller=automatic-mode] {
  display: flex;
  padding: 4px;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
  background: var(--color-surface);
}
div[data-controller=needs-ticket] span, div[data-controller=automatic-mode] span {
  display: flex;
  padding: 4px 6px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}
div[data-controller=needs-ticket] span.active, div[data-controller=automatic-mode] span.active {
  border-radius: 4px;
  background: var(--color-text-primary);
  color: var(--color-surface);
}
div[data-controller=needs-ticket] span.disabled, div[data-controller=automatic-mode] span.disabled {
  pointer-events: none;
  cursor: initial;
  color: rgba(255, 255, 255, 0.45);
}

div[data-controller=automatic-mode] {
  background: var(--color-surface-elevated);
}

a {
  color: var(--color-text-primary);
}

.btn {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-text-primary);
  padding: 13px 20px;
  height: 50px;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-secondary {
  background: var(--color-text-primary);
  color: var(--color-text-secondary);
}
.btn-danger {
  background: var(--color-danger);
}
.btn.small {
  padding: 4px 8px;
  height: 40px;
}

.icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.search-container {
  position: relative;
  flex: 1;
  min-width: 300px;
  margin: 0;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-tertiary);
  width: 20px;
  height: 20px;
}

.search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  color: var(--color-text-primary);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

nav ul.pagination {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  margin: 0;
  background: transparent;
  min-height: 34px;
}
nav ul.pagination .sep {
  color: var(--color-text-primary);
}
nav ul.pagination .page-item .page-link {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: var(--color-text-primary);
  padding: 0 10px;
}
nav ul.pagination .page-item.previous, nav ul.pagination .page-item.next {
  width: 40px;
  position: static;
}
nav ul.pagination .page-item.previous .page-link, nav ul.pagination .page-item.next .page-link {
  width: 40px;
}
nav ul.pagination .page-item.previous .page-link .material-icons, nav ul.pagination .page-item.next .page-link .material-icons {
  position: relative;
  top: 5px;
}
nav ul.pagination .page-item.active .page-link {
  color: var(--color-text-secondary);
  background: var(--color-text-primary);
  border-radius: 4px;
  border: 1px solid var(--color-text-tertiary);
}
nav ul.pagination span.sep {
  margin: 0 5px;
  line-height: 36px;
}

section.total-pagination {
  line-height: 46px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}
section.total-pagination nav ul.pagination {
  margin-top: 0;
}

header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
header .menu-logo, header .user, header .account, header .logout {
  display: flex;
  align-items: center;
  gap: 15px;
}
header .account, header .logout {
  gap: 10px;
  text-decoration: none;
}
header .account {
  appearance: none;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
header .menu-logo .logo img {
  display: block;
  width: 80px;
  height: auto;
}
header nav#main-navigation .main-navigation-open {
  cursor: pointer;
  align-items: center;
  display: flex;
}
header nav#main-navigation a {
  color: #000000;
  text-decoration: none;
}
header nav#main-navigation a.active {
  position: relative;
}
header nav#main-navigation a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  left: calc(50% - 10px);
  width: 20%;
  height: 1px;
  bottom: -10px;
}
header nav#main-navigation .main-navigation-links {
  position: fixed;
  top: 0;
  bottom: 0;
  width: calc(100% - 30px);
  max-width: 400px;
  left: -100%;
  overflow-y: auto;
  transition: left 0.25s ease-in-out 0.1s;
  background: var(--color-surface);
  z-index: 12;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
header nav#main-navigation .main-navigation-links .main-navigation-close {
  cursor: pointer;
}
header nav#main-navigation .main-navigation-links.active {
  left: 0;
}
header nav#main-navigation .main-navigation-links.active + .main-navigation-shadow {
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
header nav#main-navigation .main-navigation-links > ul {
  display: flex;
  list-style-type: none;
  flex-direction: column;
  gap: 30px;
  padding: 0;
}
header nav#main-navigation .main-navigation-links > ul > li {
  font-size: 18px;
}
header nav#main-navigation .main-navigation-links > ul > li a {
  color: var(--color-text-primary);
  display: flex;
  gap: 8px;
  align-items: center;
}
header nav#main-navigation .main-navigation-links > ul > li a:hover, header nav#main-navigation .main-navigation-links > ul > li a.active {
  color: var(--color-accent);
}
header .logo-txt {
  display: block;
  width: 134px;
  height: 24px;
}
header .logo-txt img {
  width: 100%;
  height: auto;
}
header .phone-search-account .phone {
  margin-right: 19px;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}
header .phone-search-account .search {
  margin-right: 40px;
  position: relative;
}
header .phone-search-account .search .open-search-full-text {
  cursor: pointer;
}
header .phone-search-account .search::after {
  content: "";
  background: #B11116;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  right: -20px;
}
header .phone-search-account .search input {
  position: absolute;
  right: 30px;
  border-radius: 10px;
  padding: 5px 10px;
  top: -3px;
  width: 200px;
  border: 1px solid #3d3c46;
}
header .sign-in {
  color: #000000;
}
header .shopping-cart {
  color: #000000;
  margin-right: 40px;
  position: relative;
}
header .shopping-cart .count {
  position: absolute;
}
header .shopping-cart::before {
  content: attr(data-title);
  font-size: 11px;
  position: absolute;
  background: #FFFFFF;
  padding: 0 5px;
  border-radius: 15px;
  bottom: -9px;
  z-index: 2;
}
header .wrapper-user-menu {
  position: relative;
}
header .wrapper-user-menu .open-user-menu {
  cursor: pointer;
}
header .wrapper-user-menu .user-menu {
  position: absolute;
  display: none;
  right: 0;
  background: #FFFFFF;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #3d3c46;
  z-index: 2;
}
header .wrapper-user-menu .user-menu > ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  width: -webkit-max-content;
}
header .wrapper-user-menu .user-menu > ul > li {
  margin-bottom: 4px;
}
header .wrapper-user-menu .user-menu > ul > li a {
  color: #000000;
}
header .wrapper-user-menu .user-menu.active {
  display: block;
}
header + .alert {
  text-align: center;
  padding: 15px 0;
  color: #FFFFFF;
}
header + .alert.alert-info {
  background: #028F4B;
}
header + .alert.warning, header + .alert.alert-warning {
  background: #B11116;
}

.break {
  flex-basis: 100%;
  height: 0;
}

#breadcrumb {
  display: none;
}

section#login {
  display: flex;
  height: calc(100dvh - 48px);
}
section#login .left, section#login .right {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
}
section#login .left {
  position: relative;
  background: url("../images/panneaux-WrLCXTe.avif") no-repeat;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
}
section#login .left .logo {
  position: absolute;
  width: 200px;
  height: auto;
  bottom: 40px;
  left: 40px;
}
section#login .right {
  justify-content: center;
  align-items: center;
}
section#login .right .content {
  width: 400px;
  display: flex;
  gap: 32px;
  flex-direction: column;
}
section#login .right .content #form-login, section#login .right .content #new-password-request, section#login .right .content #change-password {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section#login .right .content #form-login .btn, section#login .right .content #new-password-request .btn, section#login .right .content #change-password .btn {
  width: 100%;
}

section#new-password-request form#new-password-request {
  border: 1px solid #CBCBCB;
  background: #F4F5F9;
  border-radius: 10px 30px;
  padding: 30px;
}
section#new-password-request form#new-password-request .button {
  width: 100%;
}

section#alarms, section#job-requests, section#users, section#supervision, section#equipments {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section#alarms section.header, section#job-requests section.header, section#users section.header, section#supervision section.header, section#equipments section.header {
  display: flex;
  gap: 16px;
  align-items: center;
}
section#alarms section#search-form #clear-filters, section#job-requests section#search-form #clear-filters, section#users section#search-form #clear-filters, section#supervision section#search-form #clear-filters, section#equipments section#search-form #clear-filters {
  display: inline-block;
  cursor: pointer;
}
section#alarms section#search-form #search-form-toolbar, section#job-requests section#search-form #search-form-toolbar, section#users section#search-form #search-form-toolbar, section#supervision section#search-form #search-form-toolbar, section#equipments section#search-form #search-form-toolbar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
section#alarms section#search-form #search-form-toolbar .search-dates, section#job-requests section#search-form #search-form-toolbar .search-dates, section#users section#search-form #search-form-toolbar .search-dates, section#supervision section#search-form #search-form-toolbar .search-dates, section#equipments section#search-form #search-form-toolbar .search-dates {
  display: flex;
  gap: 1rem;
  align-items: center;
}
section#alarms section#search-form #search-form-toolbar .search-dates .field, section#job-requests section#search-form #search-form-toolbar .search-dates .field, section#users section#search-form #search-form-toolbar .search-dates .field, section#supervision section#search-form #search-form-toolbar .search-dates .field, section#equipments section#search-form #search-form-toolbar .search-dates .field {
  gap: 4px;
}
section#alarms section#search-form #search-form-toolbar .search-dates .field input[type=date], section#job-requests section#search-form #search-form-toolbar .search-dates .field input[type=date], section#users section#search-form #search-form-toolbar .search-dates .field input[type=date], section#supervision section#search-form #search-form-toolbar .search-dates .field input[type=date], section#equipments section#search-form #search-form-toolbar .search-dates .field input[type=date] {
  padding: 6px;
  background: rgba(255, 255, 255, 0.1);
}
section#alarms section#search-form #search-form-toolbar .search-icon, section#job-requests section#search-form #search-form-toolbar .search-icon, section#users section#search-form #search-form-toolbar .search-icon, section#supervision section#search-form #search-form-toolbar .search-icon, section#equipments section#search-form #search-form-toolbar .search-icon {
  color: var(--color-text-primary);
}
section#alarms section#search-form #search-form-toolbar #keywords, section#job-requests section#search-form #search-form-toolbar #keywords, section#users section#search-form #search-form-toolbar #keywords, section#supervision section#search-form #search-form-toolbar #keywords, section#equipments section#search-form #search-form-toolbar #keywords {
  padding-left: 45px;
  height: 56px;
  line-height: 56px;
  background: rgba(255, 255, 255, 0.1);
}
section#alarms section#search-form #search-form-toolbar .search-columns, section#job-requests section#search-form #search-form-toolbar .search-columns, section#users section#search-form #search-form-toolbar .search-columns, section#supervision section#search-form #search-form-toolbar .search-columns, section#equipments section#search-form #search-form-toolbar .search-columns {
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  padding: 8px 16px;
  border-radius: 8px;
  gap: 16px;
  height: 56px;
}
section#alarms section#search-form #search-form-toolbar .search-columns .field, section#job-requests section#search-form #search-form-toolbar .search-columns .field, section#users section#search-form #search-form-toolbar .search-columns .field, section#supervision section#search-form #search-form-toolbar .search-columns .field, section#equipments section#search-form #search-form-toolbar .search-columns .field {
  display: flex;
  gap: 16px;
  flex-direction: row;
  align-items: center;
}
section#alarms section#search-form #search-form-toolbar .search-columns .field label, section#job-requests section#search-form #search-form-toolbar .search-columns .field label, section#users section#search-form #search-form-toolbar .search-columns .field label, section#supervision section#search-form #search-form-toolbar .search-columns .field label, section#equipments section#search-form #search-form-toolbar .search-columns .field label {
  white-space: nowrap;
}
section#alarms section#search-form #search-form-toolbar .search-columns .field select, section#job-requests section#search-form #search-form-toolbar .search-columns .field select, section#users section#search-form #search-form-toolbar .search-columns .field select, section#supervision section#search-form #search-form-toolbar .search-columns .field select, section#equipments section#search-form #search-form-toolbar .search-columns .field select {
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
}
section#alarms section#search-form #search-form-toolbar .search-columns .btn, section#job-requests section#search-form #search-form-toolbar .search-columns .btn, section#users section#search-form #search-form-toolbar .search-columns .btn, section#supervision section#search-form #search-form-toolbar .search-columns .btn, section#equipments section#search-form #search-form-toolbar .search-columns .btn {
  height: 40px;
}
section#alarms section#search-form #search-form-filters, section#job-requests section#search-form #search-form-filters, section#users section#search-form #search-form-filters, section#supervision section#search-form #search-form-filters, section#equipments section#search-form #search-form-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
section#alarms section#search-form #search-form-filters .field-checkboxes, section#job-requests section#search-form #search-form-filters .field-checkboxes, section#users section#search-form #search-form-filters .field-checkboxes, section#supervision section#search-form #search-form-filters .field-checkboxes, section#equipments section#search-form #search-form-filters .field-checkboxes {
  position: relative;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-text-secondary);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
section#alarms section#search-form #search-form-filters .field-checkboxes:hover, section#job-requests section#search-form #search-form-filters .field-checkboxes:hover, section#users section#search-form #search-form-filters .field-checkboxes:hover, section#supervision section#search-form #search-form-filters .field-checkboxes:hover, section#equipments section#search-form #search-form-filters .field-checkboxes:hover {
  background: var(--color-surface);
}
section#alarms section#search-form #search-form-filters .field-checkboxes > label, section#job-requests section#search-form #search-form-filters .field-checkboxes > label, section#users section#search-form #search-form-filters .field-checkboxes > label, section#supervision section#search-form #search-form-filters .field-checkboxes > label, section#equipments section#search-form #search-form-filters .field-checkboxes > label {
  cursor: pointer;
  padding: 0 35px 0 20px;
  display: inline-block;
  position: relative;
  margin: 0;
  color: var(--color-text-primary);
}
section#alarms section#search-form #search-form-filters .field-checkboxes > label::after, section#job-requests section#search-form #search-form-filters .field-checkboxes > label::after, section#users section#search-form #search-form-filters .field-checkboxes > label::after, section#supervision section#search-form #search-form-filters .field-checkboxes > label::after, section#equipments section#search-form #search-form-filters .field-checkboxes > label::after {
  content: "expand_more";
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
section#alarms section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded), section#job-requests section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded), section#users section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded), section#supervision section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded), section#equipments section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: var(--color-surface);
}
section#alarms section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) > label, section#job-requests section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) > label, section#users section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) > label, section#supervision section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) > label, section#equipments section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) > label {
  border-bottom: none;
}
section#alarms section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) > label::after, section#job-requests section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) > label::after, section#users section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) > label::after, section#supervision section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) > label::after, section#equipments section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) > label::after {
  content: "expand_less";
}
section#alarms section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) > label::before, section#job-requests section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) > label::before, section#users section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) > label::before, section#supervision section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) > label::before, section#equipments section#search-form #search-form-filters .field-checkboxes:has(.checkboxes.expanded) > label::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -1px;
  background: var(--color-surface);
  z-index: 12;
  height: 1px;
}
section#alarms section#search-form #search-form-filters .field-checkboxes .checkboxes, section#job-requests section#search-form #search-form-filters .field-checkboxes .checkboxes, section#users section#search-form #search-form-filters .field-checkboxes .checkboxes, section#supervision section#search-form #search-form-filters .field-checkboxes .checkboxes, section#equipments section#search-form #search-form-filters .field-checkboxes .checkboxes {
  display: none;
}
section#alarms section#search-form #search-form-filters .field-checkboxes .checkboxes.expanded, section#job-requests section#search-form #search-form-filters .field-checkboxes .checkboxes.expanded, section#users section#search-form #search-form-filters .field-checkboxes .checkboxes.expanded, section#supervision section#search-form #search-form-filters .field-checkboxes .checkboxes.expanded, section#equipments section#search-form #search-form-filters .field-checkboxes .checkboxes.expanded {
  display: block;
  position: absolute;
  top: 36px;
  left: -1px;
  z-index: 11;
  padding: 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  width: max-content;
  border-radius: 0 6px 6px 6px;
  text-align: left;
  max-width: 200%;
  min-width: calc(100% + 2px);
}
section#alarms section#search-form #search-form-filters .field-checkboxes .checkboxes .wrapper-filter, section#job-requests section#search-form #search-form-filters .field-checkboxes .checkboxes .wrapper-filter, section#users section#search-form #search-form-filters .field-checkboxes .checkboxes .wrapper-filter, section#supervision section#search-form #search-form-filters .field-checkboxes .checkboxes .wrapper-filter, section#equipments section#search-form #search-form-filters .field-checkboxes .checkboxes .wrapper-filter {
  position: relative;
}
section#alarms section#search-form #search-form-filters .field-checkboxes .checkboxes .wrapper-filter::before, section#job-requests section#search-form #search-form-filters .field-checkboxes .checkboxes .wrapper-filter::before, section#users section#search-form #search-form-filters .field-checkboxes .checkboxes .wrapper-filter::before, section#supervision section#search-form #search-form-filters .field-checkboxes .checkboxes .wrapper-filter::before, section#equipments section#search-form #search-form-filters .field-checkboxes .checkboxes .wrapper-filter::before {
  content: "search";
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  left: 8px;
}
section#alarms section#search-form #search-form-filters .field-checkboxes .checkboxes .wrapper-filter .filter, section#job-requests section#search-form #search-form-filters .field-checkboxes .checkboxes .wrapper-filter .filter, section#users section#search-form #search-form-filters .field-checkboxes .checkboxes .wrapper-filter .filter, section#supervision section#search-form #search-form-filters .field-checkboxes .checkboxes .wrapper-filter .filter, section#equipments section#search-form #search-form-filters .field-checkboxes .checkboxes .wrapper-filter .filter {
  width: 100%;
  padding: 8px 16px 8px 37px;
  height: 38px;
  line-height: 38px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.1);
}
section#alarms section#search-form #search-form-filters .field-checkboxes .checkboxes .content, section#job-requests section#search-form #search-form-filters .field-checkboxes .checkboxes .content, section#users section#search-form #search-form-filters .field-checkboxes .checkboxes .content, section#supervision section#search-form #search-form-filters .field-checkboxes .checkboxes .content, section#equipments section#search-form #search-form-filters .field-checkboxes .checkboxes .content {
  margin: 10px -10px;
  padding: 10px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow-y: auto;
  max-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section#alarms section#search-form #search-form-filters .field-checkboxes .checkboxes .content .field-checkbox, section#job-requests section#search-form #search-form-filters .field-checkboxes .checkboxes .content .field-checkbox, section#users section#search-form #search-form-filters .field-checkboxes .checkboxes .content .field-checkbox, section#supervision section#search-form #search-form-filters .field-checkboxes .checkboxes .content .field-checkbox, section#equipments section#search-form #search-form-filters .field-checkboxes .checkboxes .content .field-checkbox {
  display: flex;
  gap: 8px;
}
section#alarms section#search-form #search-form-filters .field-checkboxes .checkboxes .footer, section#job-requests section#search-form #search-form-filters .field-checkboxes .checkboxes .footer, section#users section#search-form #search-form-filters .field-checkboxes .checkboxes .footer, section#supervision section#search-form #search-form-filters .field-checkboxes .checkboxes .footer, section#equipments section#search-form #search-form-filters .field-checkboxes .checkboxes .footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
section#alarms section#search-form #search-form-filters .field-checkboxes .checkboxes .footer .clear, section#job-requests section#search-form #search-form-filters .field-checkboxes .checkboxes .footer .clear, section#users section#search-form #search-form-filters .field-checkboxes .checkboxes .footer .clear, section#supervision section#search-form #search-form-filters .field-checkboxes .checkboxes .footer .clear, section#equipments section#search-form #search-form-filters .field-checkboxes .checkboxes .footer .clear {
  cursor: pointer;
  text-decoration: underline;
}

section#alarms section.header .current-mode {
  border-left: 1px solid var(--color-border-secondary);
  padding-left: 16px;
  white-space: nowrap;
}
section#alarms section.header .current-mode .btn {
  display: inline;
}
section#alarms section.header .next-automatic-activation {
  font-size: 12px;
}
section#alarms section.header .next-automatic-activation b {
  display: block;
  font-size: 16px;
  font-weight: 700;
}
section#alarms tr.false-negative {
  background: #B11116;
}
section#alarms tr.false-positive {
  background: #E57A00FF;
}

#office-hours .automatic-mode {
  display: flex;
  gap: 20px;
  align-items: center;
}
#office-hours .office-hours {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#office-hours .office-hours .day-of-week {
  padding: 16px;
  border-radius: 8px;
  background: var(--color-surface-elevated);
  display: flex;
  align-items: center;
  gap: 10px;
}
#office-hours .office-hours .day-of-week > div {
  flex: 0 0 calc(25% - 10px);
}
#office-hours .office-hours .day-of-week > div.field {
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
#office-hours .office-hours .day-of-week > div.field input[type=time] {
  background: rgba(255, 255, 255, 0.1);
  height: 40px;
  padding: 10px;
  border: 1px solid var(--color-border);
}
#office-hours .office-hours .day-of-week .office-hours-operations {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
#office-hours .office-hours .day-of-week .office-hours-operations .office-hours-operations {
  cursor: pointer;
}

section#equipments, section#users, section#settings, section#training-runs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section#equipments section.header, section#users section.header, section#settings section.header, section#training-runs section.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

section#equipments section.header .buttons {
  display: flex;
  gap: 20px;
}
section#equipments section#list-items .items-header {
  display: grid;
  grid-template-columns: 1fr 272px 272px;
}
section#equipments section#list-items .items-header div {
  padding: 16px;
  border: 1px solid var(--color-surface-elevated);
  background: var(--color-surface);
}
section#equipments section#list-items .items-header div:first-child {
  border-top-left-radius: 4px;
}
section#equipments section#list-items .items-header div:last-child {
  border-top-right-radius: 4px;
}
section#equipments section#list-items .items-content {
  border: 1px solid var(--color-surface-elevated);
  border-top: none;
  border-radius: 0 0 4px 4px;
}
section#equipments section#list-items .items-content .sortable {
  list-style-type: none;
}
section#equipments section#list-items .items-content .tree-row {
  display: grid;
  grid-template-columns: 1fr 272px 272px;
  border-bottom: 1px solid var(--color-surface-elevated);
  padding-left: calc(var(--depth, 1) * 2rem);
}
section#equipments section#list-items .items-content .tree-row > div {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 24px;
}
section#equipments section#list-items .items-content .tree-row .handle {
  cursor: grab;
}
section#equipments section#list-items .items-content > .sortable {
  padding-left: 0;
}
section#equipments section#list-items .cell-name {
  padding-left: 0;
  /* l'indentation est portée par les .guide-bar à l'intérieur */
}

form[name=equipment_type_form] .fields {
  display: flex;
  gap: 20px;
}
form[name=equipment_type_form] .fields .field > div {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.table-container {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.table-container .table-wrapper {
  overflow-x: auto;
  position: relative;
  scrollbar-color: var(--color-text-tertiary) var(--color-surface-elevated);
  scrollbar-width: thin;
}
.table-container .table-wrapper table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.table-container .table-wrapper table thead {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--color-surface-elevated);
}
.table-container .table-wrapper table thead th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-primary);
  border-bottom: 2px solid var(--color-border);
  white-space: nowrap;
  background: var(--color-surface-elevated);
}
.table-container .table-wrapper table thead .th-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.table-container .table-wrapper table thead .th-sort .th-sort-indicator {
  opacity: 0.35;
}
.table-container .table-wrapper table thead .th-sort:hover .th-sort-indicator {
  opacity: 0.7;
}
.table-container .table-wrapper table thead .th-sort.is-sorted .th-sort-indicator {
  opacity: 1;
  color: var(--color-text-primary);
}
.table-container .table-wrapper table tbody .frozen-column, .table-container .table-wrapper table tbody .highlight-column {
  background: var(--color-surface);
}
.table-container .table-wrapper table tbody tr:hover {
  background: var(--color-surface-elevated);
}
.table-container .table-wrapper table tbody tr:hover .frozen-column {
  background: var(--color-surface-elevated);
}
.table-container .table-wrapper table tbody tr.even {
  background: var(--color-surface);
}
.table-container .table-wrapper table tbody tr.even .frozen-column {
  background: var(--color-surface);
}
.table-container .table-wrapper table tbody tr.odd {
  background: var(--color-bg);
}
.table-container .table-wrapper table tbody tr.odd .frozen-column {
  background: var(--color-bg);
}
.table-container .table-wrapper table tbody tr .form-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.frozen-column {
  position: sticky;
  left: 0;
  background: var(--color-surface-elevated);
  z-index: 5;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
}

td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-primary);
  font-size: 0.9rem;
  white-space: nowrap;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  width: 90%;
  max-width: 800px;
  max-height: 80dvh;
  flex-direction: column;
  animation: slideUp 0.3s ease;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  padding: 32px;
}
.modal .modal-header {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: var(--color-text-primary);
  align-items: center;
}
.modal .modal-header .title-h2 {
  margin-bottom: 8px;
}
.modal .modal-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  max-height: calc(80dvh - 200px);
}
.modal .modal-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.close-btn {
  background: none;
  border: none;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
}

.close-btn:hover {
  background: var(--color-surface-elevated);
  color: var(--color-text-primary);
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
}

.column-groups {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.column-group h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-tertiary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.column-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  margin-bottom: 0.25rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.column-checkbox:hover {
  background: var(--color-surface-elevated);
}

.column-checkbox.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.column-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--color-accent);
}

.column-checkbox.disabled input[type=checkbox] {
  cursor: not-allowed;
}

.column-checkbox span {
  font-size: 0.9rem;
  color: var(--color-text-primary);
}

.ml-status-badge, .category-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: rgba(107, 114, 128, 0.15);
  color: var(--color-text-tertiary);
}

a.ml-status-minimal {
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-success);
}

a.ml-status-low {
  background: rgba(107, 114, 128, 0.15);
  color: var(--color-info);
}

a.ml-status-middle {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-warning);
}

a.ml-status-high {
  background: rgba(239, 68, 68, 0.15);
  color: var(--color-danger);
}

tr.ml-status-minimal td:first-child {
  border-left: 4px solid var(--color-success);
}
tr.ml-status-low td:first-child {
  border-left: 4px solid var(--color-info);
}
tr.ml-status-middle {
  background: rgba(245, 158, 11, 0.35);
}
tr.ml-status-middle td:first-child {
  border-left: 4px solid var(--color-warning);
}
tr.ml-status-high {
  background: rgba(239, 68, 68, 0.35);
}
tr.ml-status-high td:first-child {
  border-left: 4px solid var(--color-danger);
}

/*# sourceMappingURL=app.css-AFj3CkI.map */
