.custom-grey {
    color: #666666; /* Dunkleres Grau */    
    background-color: #dfdddd; /* Helleres Grau */
}

.highlight-row {
    background-color: #ffcccb; /* Hintergrundfarbe für markierte Zeilen */
}

.half-transparent {
    position: relative;
  }
  
  .half-transparent::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.5); /* Ändern Sie die Farbe und die Deckkraft nach Bedarf */
    z-index: -1;
  }