
.table {
    border-collapse: collapse;
    width: 100%;
  }
  
  .table td, .table th {
    border: 1px solid #ddd;
    padding: 8px;
  }
  
  .table tbody tr:nth-child(even){background-color: #f2f2f2;}
  
  .table tbody tr:hover {background-color: #ddd;}
  
  .table thead {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #5A2982;
    color: white;
  }