
    .activeTableRowColor {
      background: gold !important;
    }
    .dataTables_wrapper .dataTables_filter input[type="search"] {
        width: 100%;
    }
    
    .strikethrough {
        text-decoration: line-through;
        color: red;
    }
    
    /* Define the fixed height for the div */
  .fixed-height-div {
    height: 400px; /* Adjust this value as needed */
    overflow-y: auto; /* Add scrollbar when content exceeds the fixed height */
    overflow-x: hidden; /* Hide horizontal scrollbar */
    border: 1px solid #ccc; /* Optional: Add border for styling */
    padding: 5px; /* Optional: Add padding for content */
  }
  
  /* Style the scrollbar */
  .fixed-height-div::-webkit-scrollbar {
    width: 5px; /* Adjust the width of the scrollbar */
  }

  /* Style the scrollbar track */
  .fixed-height-div::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Light grey */
  }

  /* Style the scrollbar thumb */
  .fixed-height-div::-webkit-scrollbar-thumb {
    background-color: #FF5733; /* Grey */
    border-radius: 10px; /* Rounded corners */
  }

  /* Style the scrollbar thumb on hover */
  .fixed-height-div::-webkit-scrollbar-thumb:hover {
    background-color: #C70039; /* Dark grey */
  }
  
  
  
  
