@charset "UTF-8";kbd + kbd {
  margin-left: 5px;
}

kbd {
  background: #333;
  border: 1px solid #414141;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.644), inset 0 2px 0 rgba(255, 255, 255, 0.705), inset -2px 0 0 rgba(0, 0, 0, 0.5), inset 2px 0 0 rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  padding: 2px 4px;
  font-size: 8pt;
  color: #fff;
  font-family: "Courier New", Courier, monospace;
}
kbd + kbd {
  margin-left: 5px;
}
kbd {
  background: #333;
  border: 1px solid #414141;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.644), inset 0 2px 0 rgba(255, 255, 255, 0.705), inset -2px 0 0 rgba(0, 0, 0, 0.5), inset 2px 0 0 rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  padding: 2px 4px;
  font-size: 8pt;
  color: #fff;
  font-family: "Courier New", Courier, monospace;
}
.context {
  display: inline-block;
  position: fixed;
  top: 0px;
  left: 0px;
  min-width: 270px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  background: #262933;
  font-size: 9pt;
  border: 1px solid #333333;
  border-radius: 6px;
  box-shadow: 2px 2px 2px -1px rgba(0, 0, 0, 0.5);
  padding: 3px 0px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 9999;
}
.context .item {
  padding: 4px 19px;
  cursor: default;
  color: inherit;
}
.context .item:hover {
  background: #2777ff;
}
.context .item:hover .hotkey {
  color: #fff;
}
.context .item:hover .icon-wrapper {
  color: #fff; /* Changer la couleur de l'icône au survol */
}
.context .item .icon-wrapper {
  display: inline-flex; /* Aligner les icônes avec le texte */
  justify-content: center;
  align-items: center;
  width: 20px; /* Largeur fixe pour les icônes */
  height: 20px; /* Hauteur fixe pour les icônes */
  margin-right: 8px; /* Espacement entre l'icône et le texte */
  font-size: 14px; /* Taille de l'icône */
  color: inherit; /* Hérite de la couleur de l'élément parent */
}
.context .disabled {
  color: #878b90;
}
.context .disabled .icon-wrapper {
  color: #878b90; /* Couleur des icônes désactivées */
}
.context .disabled:hover {
  background: inherit;
}
.context .disabled:hover .hotkey {
  color: #878b90;
}
.context .disabled:hover .icon-wrapper {
  color: #878b90; /* Garder la couleur désactivée au survol */
}
.context .separator {
  margin: 4px 0px;
  height: 0;
  padding: 0;
  border-top: 1px solid #333333;
}
.context .hotkey {
  color: #878b90;
  float: right;
}[class^=list-manager] {
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 80vw;
  top: 30%;
  max-height: 400px;
  overflow-y: auto;
  left: 0;
  z-index: 9999;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  background: rgba(0, 0, 0, 0.9450980392);
}

[class^=list-manager] h1 {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin: 0;
  padding: 10px;
}

[class^=list-manager] table {
  width: 80vw;
  color: #fff;
  font-size: 14px;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

[class^=list-manager] th {
  background-color: #4b4b4b;
  color: white;
  text-align: center;
  padding: 8px;
  position: sticky;
  top: 0;
}

[class^=list-manager] td {
  border: 1px solid #e9e9e9;
  padding: 8px;
}

[class^=list-manager] th {
  background-color: #4b4b4b;
  text-align: left;
}

[class^=list-manager] .active-state {
  color: #00ff00;
}

[class^=list-manager] .inactive-state {
  color: #ff0000;
}.svg-editor-scrollbar-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.svg-editor-scrollbar {
  background-color: #f1f1f1;
  position: absolute;
  border-radius: 6px;
  pointer-events: auto;
}
.svg-editor-scrollbar:hover .svg-editor-scrollbar-thumb {
  background-color: #555;
}
.svg-editor-scrollbar.horizontal {
  height: 12px;
  bottom: 2px;
  left: 2px;
  right: 14px;
}
.svg-editor-scrollbar.vertical {
  width: 12px;
  right: 2px;
  top: 2px;
  bottom: 14px;
}

.svg-editor-scrollbar-thumb {
  background-color: #888;
  position: absolute;
  border-radius: 6px;
  cursor: pointer;
}
.svg-editor-scrollbar-thumb.horizontal {
  height: 12px;
  min-width: 20px;
}
.svg-editor-scrollbar-thumb.vertical {
  width: 12px;
  min-height: 20px;
}

.svg-editor-scrollbar-corner {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 12px;
  height: 12px;
  background-color: #f1f1f1;
  border-radius: 3px;
}