 .accrodion-list {
    display: flex;
    flex-direction: column;
    margin: 50px auto;
    margin-bottom: 50px;
    padding: 10px;
    text-align: center;
    align-items: center;
    width: 80%;
   
 }

 /* Style the buttons that are used to open and close the accordion panel */
 .accordion {
    border-radius: 10px;
    background-color: #eee;
    color: #444;
    cursor: pointer;
    font-size: 20px;
    padding: 18px;
    width: 100%;
    text-align: center;
    border: none;
    outline: none;
    transition: 0.4s;
    margin-bottom: 10px;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .accordion:hover {
    background-color: #ccc;
  }
  
  /* Style the accordion panel. Note: hidden by default */
  .panel {
    width: 100%;
    margin-bottom: 10px;
    transform: 0.5s;
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
  } 

  .panel .table{
    border-radius: 10px;
    border-collapse: collapse;
    width: 100%;
}
.panel .table td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.panel .table tr:nth-child(even) {
  background-color: #e9e9e9;
}