.dt-container{
  .dataTable{
    /* Alternate row colors */
    tbody tr:nth-child( odd ) {
      background-color: #f9f9f9;
    }
  
    tbody tr:nth-child( even ) {
      background-color: #ffffff;
    }
  
    /* Hover effect for rows */
    tbody tr:hover {
      background-color: #f0f2f5;
    }
  
    /* Header background color */
    thead th {
      background-color: #000000;
      color: #ffffff;
    }
  
    /* Column order indicator color */
    .dt-column-order {
      &::before,
      &::after {
        color: #ffffff;
      }
    }
  }

  /* Input background color */
  .dt-input {
    background-color: #ffffff !important;
  }
}