.restore-list table {
    font-family: 'Open Sans', sans-serif;
   
    line-height: 1.6em;
    color: #393a56;
    width: 100%;
    
    border-spacing: 0;
    border: 1px solid #dddddd;
    border-radius: 5px; /* Adds a slight curve to the corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
  }
  
  /* Set all background colors to white to remove the grey header and alternating rows */
  .restore-list th,
  .restore-list td {
    background-color: #ffffff; 
  }
  
  .restore-list thead {
    background-color: transparent;
  }
  
  .restore-list th {
    font-weight: 600;
    padding: .7em 1em;
    border: 1px solid #dddddd;
    border-width: 0 1px 1px 0;
    text-align: left;
    text-align: center; /* This centers the header text */
  }
  
  .restore-list td {
    padding: .7em 1em;
    border: 1px solid #dddddd;
    border-width: 0 1px 1px 0;
    background: white !important;
    text-align: left; /* This ensures all other cells remain left-aligned */
  }
  
   
  .restore-list tbody tr:first-child td {
    font-weight: normal;
  }
  