:root {
    --menu-width: 330px; /* sidebar menu width */
    --navbar-height: 60px; /* navigation bar height */
    --gauge-fg-color: #8FC0DA; /* gauge foreground color */
    --gauge-bg-color: #E9ECEF; /* gauge background color */
    --sdh-border-color: #DDDDDD;
    --sdh-outline-color: #CC3333;
    --sdh-secondary-color: #111111;
    --sdh-online-color: #339933;
    --sdh-offline-color: #CC3333;
    --sdh-courtesy-color: rgb(19,75,160);
    --sdh-loader-color: #CC3333;
    --sdh-map-canvas-width: 5000px;
    --sdh-map-canvas-height: 5000px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
    border-radius: 3px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,.3);
    background-color: var(--sdh-outline-color);
}

html {
  height: -webkit-fill-available;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
  background-color: #f4f6f9;
}

.logo {
    max-width: 80%;
}

.breadcrumb {
    font-weight: bold;
    margin-left: 10px;
    margin-top: 5px;
}

.connection-status {
    width: var(--menu-width);
}

/* chart loader */
/* HTML: <div class="loader"></div> */
.chartLoader {
  margin: auto;
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--sdh-loader-color);
  --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}
/* chart loader */

/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: 
    radial-gradient(farthest-side,var(--sdh-outline-color) 94%,#0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%,var(--sdh-outline-color));
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
    animation: l13 1s infinite linear;
}
@keyframes l13{ 
    100%{transform: rotate(1turn)}
}

.blinking-slow {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' style='width: 100%; height: 100%' viewBox='0 0 100 100'><polygon fill-opacity='0.35' points='0,0 0,100 100,100' /></svg>");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(100,100,100,0.35);
}

.blinking-fast {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' style='width: 100%; height: 100%' viewBox='0 0 100 100'><polygon fill-opacity='0.35' points='0,0 50,50 100,0' /><polygon fill-opacity='0.35' points='0,100 50,50 100,100' /></svg>");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(100,100,100,0.35);
}

/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 99999;
  height: 2em;
  width: 2em;
  /* overflow: show; */
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: var(--sdh-courtesy-color);*/
  backdrop-filter: blur(8px) grayscale(1);
  -webkit-backdrop-filter: blur(8px) grayscale(1);
}
/* main loader */

.container-fluid {
    max-height: calc(100vh - var(--navbar-height));
    overflow-y: auto;
}

.container-fluid-height {
    height: calc(100vh - var(--navbar-height));
}

.container-child {
    height: calc(100% - 40px);
}

#page-content-wrapper {
    width: 100%;
}

/* navigation bar */
.navbar-button {
    border-width: 0;
}
.nav-flush .nav-link {
  border-radius: 0;
}

.navbar-nav > .nav-item {
    margin-left: 5px;
    margin-right: 5px;
}

.navbar-nav > .nav-item.active {
    border-color: var(--sdh-outline-color);
    border-width; 3px;
    border-bottom-style: inset;
}

.navbar-nav > .nav-item > .nav-link {
    font-weight: 900;
}

.tab-pane > .nav > .nav-item > .nav-link.active {
    color: var(--bs-body-color);
}

.navbar-nav > .nav-item.active > .nav-link {
    color: #fff;
}
/* navigation bar */

/* sidebar */
#sidebar {
    min-height: 100vh;
    margin-left: calc(var(--menu-width) * -1);
    -webkit-transition: margin .25s ease-out;
    -moz-transition: margin .25s ease-out;
    -o-transition: margin .25s ease-out;
    transition: margin .25s ease-out;
}

#sidebar .sidebar-heading {
    padding: 0.875rem 1.25rem;
    font-size: 1.2rem;
}

#sidebar .list-group {
    width: var(--menu-width);
}

.sidebar-button-container {
    margin-left: 10px;
    margin-right: 10px;
}

.sidebar-button {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 900
}

#sidebar-menu {
	width: var(--menu-width);
}

#wrapper #sidebar {
    margin-left: calc(var(--menu-width) * -1);
}

#wrapper.toggled #sidebar {
    margin-left: 0;
}

.menu-central {
    margin-left: 10px;
}

.menu-margin {
    margin-left: 25px !important;
}

.menu-leaf {
    margin-left: 20px !important;
    pointer-events: none;
    margin-left: 10px;
}
.menu-leaf:hover {
    color: rgba(0, 0, 0, .85);
    background-color: #6f777e;
}
.menu-leaf a:link {
    text-decoration: none;
    color: #999;
}
.menu-leaf a:visited {
    text-decoration: none;
    color: #999;
}
.menu-leaf a:hover {
    text-decoration: none;
}
.menu-leaf a:active {
    text-decoration: none;
    color: #999;
}

.menu-pilot {
    margin-left: 0px;
}

.menu-scroll {
    overflow-x: clip !important;
}

.menu-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
    border-radius: 3px;
}

.menu-scroll::-webkit-scrollbar {
    width: 4px;
}

.menu-scroll::-webkit-scrollbar-thumb {
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,.3);
    background-color: var(--sdh-outline-color);
}

.menu-row {
    width: 98%;
    padding-left: 0px !important;
    color: rgba(255, 255, 255, .75);
}

.menu-item-icon {
    color: rgba(255, 255, 255, .75);
    margin-left: 2px;
    margin-right: 5px;
}

.menu-item-name-tree {
    color: rgba(255, 255, 255, .5);
    margin-left: 4px;
    font-size: smaller;
    font-weight: 400 !important;
    text-transform: none;
    overflow: hidden;
    max-height: 100%;
}

.menu-item-value {
    color: rgba(255, 255, 255, .75);
    margin-left: 8px;
    font-size: smaller;
    font-weight: 900;
    text-transform: none;
}

.menu-item {
    text-wrap: nowrap;
    color: #999;
}

.menu-description {
    margin-left: 30px;
}

.menu-status-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  /*border: 1px solid white;*/
  margin-right: 5px;
}

.menu-status-circle-online {
    background-color: var(--sdh-online-color);
}

.menu-status-circle-offline {
    background-color: var(--sdh-offline-color);
}

.menu-item-active .menu-item-name {
    color: var(--sdh-outline-color) !important;
}

.menu-edit {
    display: flex;
    justify-content: center;
    padding: 4px;
}

.menu-edit .dropdown-menu {
    padding-top: 2px;
    padding-bottom: 2px;
}

.menu-separator {
    margin: 8px;
    color: var(--sdh-border-color);
}

.menu-drop-area {
    background-color: var(--sdh-outline-color) !important;
}

.move-handle {
    cursor: move;
}
/* sidebar */

/* menu > symbol animation */
.btn-toggle {
  display: inline-flex;
  align-items: center;
  padding: .25rem .5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  background-color: transparent;
  border: 0;
}

.btn-toggle:hover {
  color: rgba(0, 0, 0, .85);
  background-color: #6f777e;
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: 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='none' stroke='rgba%28255,255,255,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform .35s ease;
  transform-origin: .5em 50%;
}

.generic-menu-item > .btn-toggle::before {
    content: none;
}

.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  display: inline-flex;
  padding: .1875rem .5rem;
  margin-top: .125rem;
  margin-left: 1.25rem;
  text-decoration: none;
  color: rgba(255, 255, 255, .75);
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: #6f777e;
}
/* menu > symbol */

/* main grid */
.grid-stack {
}

.grid-stack-item-content { 
    display: flex;
    border-radius: 10px;
    box-shadow: 0px 4px 7px lightgray;
}

.grid-item-container {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    max-width: 100%;
}

.grid-item-header {
    flex: 1 1 0;
    background-color: white;
    border-bottom: 1px solid black;
    line-height: 50px;
    font-weight: bold;
    display: grid;
    justify-content: center;
    max-height: 50px;
    font-size: 0.85vw;
    text-align: center;
}

.grid-item-content {
    flex: 3 1 0;
    padding-top: 10px;
    background-color: white;
    font-size: 1.3vw;
    font-weight: bold;
    display: grid;
    justify-content: center;
    text-align: center;
    align-items: center;
    overflow-wrap: break-word;
    word-break: break-word;
}

.grid-item-footer {
    flex: 1 1 0;
    background-color: white;
    display: grid;
    justify-content: center;
    max-height: 50px;
    font-size: 0.85vw;
}

.grid-chart-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@media screen and (max-width: 568px){
    .grid-item-header {
        font-size: 4vw;
    }

    .grid-item-content {
        font-size: 8vw;
    }

    .grid-item-footer {
        font-size: 4vw;
    }
}

/* main grid */

/* map */
#map {
    height: calc(100vh - var(--navbar-height));
}
/* map */

/* charts */
#gridDetailChart {
    max-height: 300px;
}

#charts {
    /*height: calc(100vh - var(--navbar-height));*/
}
.chart-container {
    padding: 10px;
}
.chart-block {
    padding: 10px;
    height: 100%;
    border-width: 1px;
    border-color: lightgray;
    border-style: solid;
    border-radius: 4px;
    box-shadow: 0px 4px 7px lightgray;
}
/* charts */

/* gauge */
.gauge {
    position: relative;
    border-radius: 50%/100% 100% 0 0;
    background-color: var(--gauge-fg-color, #a22);
    overflow: hidden;
    margin: auto;
    min-width: 100px;
    width: 10vw;
    aspect-ratio: 2 / 1;
}
@media screen and (max-width: 568px) {
    .gauge {
        width: 40vw;
    }
}

.gauge:before{
    content: "";
    display: block;
    padding-top: 50%;   /* ratio of 2:1*/
}
.gauge .chart {
  overflow: hidden;
}
.gauge .mask {
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0;
  top: 40%;
  background-color: #fff;
  border-radius: 50%/100% 100% 0 0;
}

.gauge .percentage {
    position:  absolute;
    top: -1px;
    left: -1px;
    bottom: 0;
    right: -1px;
    background-color: var(--gauge-bg-color, #aaa);
    transform:rotate(var(--rotation)); 
    transform-origin: bottom center; 
    transition-duration: 600;
}
.gauge:hover {
  --rotation: 100deg;
}
.gauge .value {
  position:absolute; bottom:0%; left:0;   
  width:100%; 
  text-align: center;
}

.gauge .min {
  position:absolute; 
  bottom:0; left:5%;   
}
.gauge .max {
  position:absolute; 
  bottom:0; right:5%;   
 }
/* gauge */


#editItem .modal-body {
    padding: 0px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

/* tagged input */

.tagged_input {
    width: 100%;
}

.tagged_input > span{
    cursor:pointer;
    display:block;
    float:left;
    color:#3e6d8e;
    background:#E1ECF4;
    padding:5px;
    padding-right:25px;
    margin:4px;
    border-radius: 10px;
}
.tagged_input > span:hover{
    opacity:0.7;
}
.tagged_input > span:after{
    position:absolute;
    content:"×";
    border:1px solid;
    padding:2px 5px;
    margin-left:3px;
    font-size:11px;
    font-weight: bold;
    border-radius: 4px;
}
.tagged_input > input{
    background:#eee;
    border:0;
    margin:4px;
    padding:7px;
    width:auto;
}
/* tagged input */

#emailBody {
    min-height: 170px;
}

#notifBody {
    min-height: 130px;
}

.scrollable-menu {
    margin-top: 7px;
    border-radius: 5px;
    background: wheat;
    list-style-type: none;
    padding: 0px;
}

.scrollable-menu li {
    padding: 5px;
    background: white;
}

.scrollable-menu .active {
    background: rgba(183, 183, 183);
}

/* virtual definition */
.rules-group-container {
    border: 1px solid lightgray !important;
    background: none !important;
}

.has-virtual-state {
    font-weight: bold;
}
/* virtual definition */

/* logs */
.log-container {
    margin: 0px;
    margin-top: 5px;
}
.log-frame {
    border: 1px solid var(--bs-secondary-border-subtle);
    border-radius: 10px;
    padding: 0px;
    margin: 0px;
}
.loglines {
    background: #000;
    color: #fff;
    overflow: scroll;
    margin: 0px;
    max-height: 500px;
    display: block;
    font-family: monospace;
}
.loglines:hover {
    background-color: #000;
}
.loglines {
    /* overflow-x: clip !important; */
}

.loglines::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
    border-radius: 3px;
}

.loglines::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.loglines::-webkit-scrollbar-thumb {
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,.3);
    background-color: #D62929;
}

.logline {
    font-family: monospace;
}
.log_date {
    color: #c678dd;
    font-family: monospace;
}
.log_level {
    color: white;
    font-weight: bold;
    font-family: monospace;
}
.log_filename {
    color: #6c71c4;
    font-weight: bold;
    font-family: monospace;
}
.log_fileline {
    color: #d19a66;
    font-weight: bold;
    font-family: monospace;
}
.log_filesep {
    color: white;
    font-weight: bold;
    font-family: monospace;
}
.log_startup {
    font-weight: bold;
    font-family: monospace;
    color: #61afef;
}
/* logs */

.alert-state-swatch {
    border: 4px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

/* semaphore */
.sem {
    display: inline-flex;
    margin-right: 20px;
}

.sem div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 48px;
    text-align: center;
    /* color: black; */
    margin-left: 5px;
    line-height: 40px;
}

.sem:hover {
    cursor: pointer;
}

.sem .green {
    background-color: rgba(0, 0, 0, 0);
    border: 3px solid #2dc937;
    opacity: 0.3;
    font-weight: bold;
    line-height: 2.2em;
    color: white;
}

.sem .green.active {
    background-color: #2dc937;
    opacity: 1;
    font-weight: bold;
    line-height: 2.2em;
}

.sem .yellow {
    opacity: 0.3;
    background-color: rgba(0, 0, 0, 0);
    border: 3px solid #e7b416;
    color: white;
    font-weight: bold;
    line-height: 2.2em;
}

.sem .yellow.active {
    opacity: 1;
    background-color: #e7b416;
    color: #3c3c3c;
    font-weight: bold;
    line-height: 2.2em;
}

.sem .red {
    opacity: 0.3;
    background-color: rgba(0, 0, 0, 0);
    border: 3px solid #cc3232;
    font-weight: bold;
    line-height: 2.2em;
    color: white;
}

.sem .red.active {
    opacity: 1;
    background-color: #cc3232;
    font-weight: bold;
    color: white;
    line-height: 2.2em;
}
/* semaphore */

/* reports */
#reports .row {
    margin-left: 0px;
    margin-right: 0px;
}

/* Report blocks as modern cards */
.report-block {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: box-shadow .2s ease;
}
.report-block:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* Headers above each block */
.report-block-notch {
  background: rgba(255,255,255,0.9);
  padding: .4rem .8rem;
  border-radius: 0 0 .5rem .5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
  backdrop-filter: blur(6px);
}

/* Title inside blocks */
.report-block-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: .25rem;
}

/* Buttons */
.btn-light.border {
  border-radius: .5rem;
}
.btn-light.border:hover {
  background-color: #e9ecef;
}

/* Tables */
.table {
  border-radius: .5rem;
  overflow: hidden;
}
.table th {
  background-color: #f1f3f5;
  font-weight: 600;
}

/* Badges / tags */
.badge.text-bg-secondary {
  background-color: #6c757d;
}

/* Dropdowns */
.dropdown-menu {
  border-radius: .75rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.list-group-item {
  border: none;
  padding: .6rem 1rem;
  cursor: pointer;
}
.list-group-item:hover {
  background-color: #f8f9fa;
}

/* Utility */
.report-block-pagebrk span {
  color: #6c757d;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: 1px;
}

/* reports */

/* maps */
#maps {
    position: relative;
    height: calc(100vh - var(--navbar-height) - 4px);
    overflow: auto;
}

.grid {
    position: absolute;
    width: calc( var(--sdh-map-canvas-width) + 1px);
    height: calc( var(--sdh-map-canvas-height) + 1px);
    left: 0;
    background-image:
        repeating-linear-gradient(#ccc 0 1px, transparent 1px 100%),
        repeating-linear-gradient(90deg, #ccc 0 1px, transparent 1px 100%);
    background-size: 100px 100px;
    z-index: -998;
}
.small-grid {
    position: absolute;
    width: var(--sdh-map-canvas-width);
    height: var(--sdh-map-canvas-height);
    left: 0;
    background-image:
        repeating-linear-gradient(#ddd 0 1px, transparent 1px 100%),
        repeating-linear-gradient(90deg, #ddd 0 1px, transparent 1px 100%);
    background-size: 10px 10px;
    z-index: -999;
}

#maps {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

#map-main {
    position: absolute;
    width: var(--sdh-map-canvas-width);
    height: var(--sdh-map-canvas-height);
    left: 0;
    transform: scale(1.0);
    transform-origin: 0 0;
}

#map-container {
    position: relative;
    height: 100%;
}

#map-background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.ui-widget-content {
    border: none;
    background-color: rgba(0, 0, 0, 0);
}

.map-item-container.selected .map-item {
    border: 2px solid blue;
    border-radius: 0px;
}

.map-item {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 10px;
}

.map-item.selected {
    border: none;
}

.map-item-label {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.map-item-stacked {
    border: 1px solid lightgray;
    overflow: hidden;
}

/* maps */

.list-group-history {
    border: none;
    border-bottom: 1px solid lightgray;
}

.obj-def-group {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 2px solid lightgray;
}

/* semaphore widget */

.sem-widget-container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
}

.sem-widget {
    height: 40px;
    width: 60px;
}

.sem-widget-value {
    border-top: 1px solid lightgray;
    border-bottom: 2px solid lightgray;
    font-size: 0.5em;
    height: 100%;
    display: flex;
}

/* semaphore widget */

/* timeline widget */
.timeline-widget-container {
    width: 100%;
    height: 100px;
}

.pie-widget-container {
}

.pie-widget-container > canvas {
    margin: auto;
}

/* timeline widget */

.object_placeholder {
    background-color: rgb(239, 239, 239);
    padding: 4px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
}

.chosen-container {
    min-width: 150px !important;
}

.axis text {
    color: grey;
}
.axis path,
.axis line {
    fill: none;
    stroke: grey;
    shape-rendering: crispEdges;
}

.wunderbaum {
    background-color: rgba(0, 0, 0, 0) !important;
    border: 0px solid black !important;
    border-radius: 0px !important;
}

.wunderbaum:focus-visible {
    outline: none;
}

#menu-tree .wb-node-list {
    height: 100% !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    overflow-y: auto;
}

#menu-tree .wb-row {
    width: 98%;
    position: relative;
    padding: 0px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: bold;
    font-size: 14pt;
    min-height: 28px;
    height: 28px;
    top: 0px !important;
}

#menu-tree .wb-row:hover {
    background-color: gray;
    border-radius: 6px;
}

#menu-tree .wb-row.wb-active {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
    color: var(--sdh-outline-color);
}

#menu-tree .wb-row.wb-active:hover {
    background-color: gray;
}

#menu-tree .wb-title {
    width: 90%;
    margin-top: 3px;
    margin-left: 4px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--bs-btn-font-family)
}

#menu-tree .wb-expander {
    color: rgba(255, 255, 255, 0.5);
}

#menu-tree .wb-expander.collapsed {
    width: 0px;
    margin-left: -5px;
}

#menu-tree .wb-icon {
    margin-left: 1px;
    margin-right: 4px;
}

#menu-tree .wb-node {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#drop-target {
    display: none;
    border: 2px dashed #ccc;
    padding: 3px;
    height: 32px;
    color: white;
    text-align: center;
    border-radius: 4px;
    margin-left: 4px;
    margin-right: 4px;
}

#drop-target.highlight {
    background-color: rgba(76, 175, 80, 0.4);
}

.nav-link .badge {
    font-size: 0.8rem;
    transform: translate(-30%, -40%);
}

#importColorsModal table {
    overflow: auto;
}
