label.greyed-out {
    /*background-color: #d3d3d3; /* Light grey */
    color: #808080; /* Darker grey for text */
    pointer-events: none; /* Prevent interaction */
    opacity: 0.6; /* Optional for a faded look */
  }
  .elementHide{
    display: none;
  }
  tr .elementHide {
    display: none;
  }
  select.disabled {
    pointer-events: none; /* Prevent interaction */
    opacity: 0.5;         /* Visual indication of being disabled */
    background-color: #f0f0f0;
  }
  td .tdcell{
    padding: 0px 28px;
  }
  .containercheckbox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border: 1px solid #949494;
    padding: 10px;
    border-radius: 8px;
  }
  .labelcheckbox {
    display: flex;
    align-items: center;
    gap: 5px;
  }