/* Change color of dropdown links on hover */
.dropdown-item a:hover {background-color: #2e58e0;}

/* The sidebar menu */
.sidenav {
    height: 100%; /* Full-height: remove this if you want "auto" height */
    width: 17vw; /* Set the width of the sidebar */
    position: absolute; /* Fixed Sidebar (stay in place on scroll) */
    z-index: 1; 
    left: 0;
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 20px;
    padding-left:10px;
    color:white;

  }

  .tox-notifications-container {
    display: none;
  } 

  .sidenavbg {
    background-color:#696969;
    border-left:2px solid darkslategrey
  }
  
  /* The navigation menu links */
  .sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    color: white;
    display: block;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    font-size: large;
  }
  
  /* Style page content */
  .main {
    margin-left: 160px; /* Same as the width of the sidebar */
    padding: 0px 10px;
  }
  
  /* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }

  /* link */
  td a:link {
    text-decoration: none;
    color:black;
  }
  
  td a:visited {
    text-decoration: none;
    color:black;
  }
  
  td a:hover {
    text-decoration: underline;
    color:black !important;
  }
  
  td a:active {
    text-decoration: none;
    color:black;
  }

  .pre-scrollable {
    max-height: 540px;
    overflow-y: scroll;
}

  /*
   * table
   */
   .table-striped>tbody>tr:nth-child(odd)>td, 
   .table-striped>tbody>tr:nth-child(odd)>th {
      background-color: #4ed687
    }


   .table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
    background-color: #2e58e0;
    color: #f1f1f1;
  }


.text-abcdom-color {
  color: #0000 !important; /* Define your own color in your CSS */
}

/* schede */
.scheda {
  background-color: #efefef;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #676767;
  border-radius: 0.5rem  !important;
  max-width: 78vw !important;
}

#loading {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0.7;
  background-color: #fff;
  z-index: 90000009;
}

#loading-image {
  position: relative;
  top: 25vh;
  z-index: 100;
  border-radius: 50%;
  opacity: 1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
      transform: scale(2);
      box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}




 