@font-face {
  font-family: 'Avenir Next';
  src: url('./AvenirNextLTPro-Regular.otf');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: var(--font-family) !important;
  margin: 0;
  background-color: #000;
}

.p-menu {
  border-radius: 10px;
  background: rgb(3, 140, 127);
  padding: 0.3rem;
}

.p-inputswitch.p-highlight .p-inputswitch-slider {
    background: #63cec1;
}

.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
    background: #000000 ;
    border-color: #63cec1;
}

.p-menu .p-menuitem {
  border-radius: 15px;
  background: #e5e7eb;
  border: 3px solid #333;
  font-size: 1.1rem;
  margin: 0.2rem;
}

.p-menuitem:hover {
  border-color: #63cec1;
}

.panel-dialog .p-card-content {
    padding: 0rem !important;
}

.p-menu .p-menuitem > .p-menuitem-content .p-menuitem-link {
    padding: 0.6rem 1.1rem;
}

.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
    color: #fff;
}
.p-menuitem-text {
    font-family: "Avenir Next";
    color: #000;
}

.p-menuitem-content {
  border-radius: 12px;
}

.p-component {
  font-family: var(--font-family) !important;
  font-feature-settings: var(--font-feature-settings, normal);
  font-size: 1rem;
  font-weight: normal;
}

:root {
  font-family: 'Avenir Next', Arial !important;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11" !important;
  font-variation-settings: normal !important;
  --font-family: 'Avenir Next', Arial !important;
}

.overlayMenu{
  position:absolute;
  cursor:pointer;
  font-size:30px;
  color:red;
}

.tippy-box {
  background-color: #444 !important;
  color: white !important;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 6px;
}

input::-ms-reveal,
input::-ms-clear {
  display: none !important;
}

[id*="uid_second"] {
  height: var(--dynamic-height, auto);
  transition: height 1.0s ease-in-out;
  -webkit-transition: height 1.0s ease-in-out;
}

.not-show {
  display: none;
}

.lm_popin {
  background-color: #000;
}

.lm_splitter {
  display: none !important;
}

.lm_row{
  margin-left: 5px !important;
}

.lm_goldenlayout {
  background-color: rgb(0, 169, 157) !important;
}

/* Stile per la barra di scorrimento */
::-webkit-scrollbar {
  width: 15px; /* Larghezza della scrollbar */
}

/* Stile per il "track" (la barra di scorrimento di sfondo) */
::-webkit-scrollbar-track {
  background-color: #333333; /* Colore di sfondo della barra di scorrimento */
  border-radius: 5px; /* Aggiunge un bordo arrotondato al track */
}

/* Stile per il "thumb" (la parte mobile della barra di scorrimento) */
::-webkit-scrollbar-thumb {
  background-color: #999999; /* Colore di sfondo del thumb */
  border-radius: 10px; /* Forma ovale */
}

/* Stile per il "thumb" quando l'utente ci passa sopra con il mouse */
::-webkit-scrollbar-thumb:hover {
  background-color: #aaaaaa; /* Cambia colore al passaggio del mouse */
}


@keyframes loadingAnimationTop {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

@keyframes loadingAnimationBottom {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}

.license-button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 35px;
  margin-top: 10px;
  background-color: rgb(0, 169, 157);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 0px;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px;
  padding: 20px;
  font-family: "Avenir Next";
  font-size: 15px;
  color: rgb(255, 255, 255);
  flex-flow: column;
}

.info-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  cursor: pointer;
  height: 50px;
  background-color: rgb(0, 169, 157);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 0px;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px;
  padding: 10px;
  font-family: "Avenir Next";
  font-size: 19px;
  color: rgb(255, 255, 255);
  margin: 10px 60px 10px 60px;
}

@keyframes glow {
      0%, 100% { 
          filter: drop-shadow(0 0 20px rgba(3, 140, 127, 0.5));
      }
      50% { 
          filter: drop-shadow(0 0 40px rgba(99, 206, 193, 0.8));
      }
  }
  
  @keyframes blink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0; }
  }
  
  @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
  }

.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.toolbar {
  display: flex;
  align-items: center;
  background-color: #353535;
  padding: 5px 10px;
  border: 1px solid #88878DFF;
}

.toolbar-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: solid 1px #FFFFFF;
  padding: 0 10px;
  color: #FFFFFF;
  height: 100%;
}

.toolbar-button:hover {
  cursor: pointer;
}

.toolbar-dir {
  border-left: dotted 2px #FFFFFF;
}

.toolbar-dir:hover {
  cursor: default;
}

.toolbar-button-hint {
  position: absolute;
  top: 35px;
  background-color: #929295;
  padding: 2.5px 5px;
  font-size: 14px;
}

.tree-view-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tree-view-container {
  background-color: #585858FF;
  border: 1px solid #88878DFF;
  color: #FFFFFF;
  display: flex;
  flex: 1;
  text-align: left;
}

.tree-view-container li:hover {
  cursor: pointer;
}

.tree-view-col {
  display: flex;
  flex: 1;
  list-style-type: none;
}

.tree-view-col ul {
  list-style-type: none;
  padding-inline-start: 0px;
}

.tree-view-col-left {
  border-right: 1px solid #88878DFF;
  padding: 0 30px 20px 20px;
}

.tree-view-col-right {
  border-left: 1px solid #88878DFF;
  padding: 20px 20px 20px 30px;
}

.tree-view-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 0;
}

.selected-item {
  background-color: #02BCBCFF;
}
