#background-content{
    background: #fff;
    height: 100%;
    padding:20px;
    box-shadow: 0px 0px 7px 1px #adadad50
}
.bar-button{
    margin-bottom:20px;
}
.dynamic_textarea{
    box-sizing: border-box;
    max-height: 134px; /* optional, but recommended */
    min-height: 38px;
    overflow-x: hidden;
}
.table thead td{
    text-align: center;
    vertical-align: middle !important;
}
.fix-btn{
    width: 24px;
    height: 24px;
    padding: 0px;
    font-size: 12px;
    margin-left: 2px;
}
.not-set{
    color:#aaaaaa;
}

#background-content{
    overflow: auto;
}

.hand-hover{
    cursor: grab;
}

@font-face {
  font-family: "ElisarDT";
  src: url("/fontawesome/webfonts/ElisarDT.woff2")format("woff2"),
  url("/fontawesome/webfonts/ElisarDT.woff")format("woff"),
  url("/fontawesome/webfonts/ElisarDT.ttf")format("truetype");
}

body { 
  font-family: "ElisarDT" !important;

} 

/*Spinner*/

.whole-spinner {
    display: none;
    pointer-events: none;
  }
  
  /* SPINENR */
  .loading-box {
    position: fixed;
    z-index: 999;
    left: 0px;
    right: 0px;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.5) !important;
  }
  
  .loader,
  .loader:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
  
  }
  
  .loader {
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.0);
    border-right: 1.1em solid rgba(255, 255, 255, 0.0);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.0);
    border-left: 1.1em solid #ED1C24;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
  }
  
  @-webkit-keyframes load8 {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  @keyframes load8 {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
/*Spinner*/

.icon-button {
  display: inline-block; /* Use inline-block */
  width: 40px; /* Set a fixed width */
  height: 40px; /* Set a fixed height */
  line-height: 40px; /* Match line height for vertical centering */
  background-color: #f0f0f0; /* Background color */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s; /* Smooth transition */
  text-align: center; /* Center icon horizontally */
  margin-left: 10px; /* Space before the icon button */
}

