table {
    margin-left: 30px;
     width: 90%;
     border-collapse: separate;
     border-spacing: 0;
     border: none;
     border-radius: 20px;
     overflow: hidden;
     background-color: #f3e5f5;
     color: black;
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
 }

 th, td {
     padding: 16px;
     text-align: left;
     border-bottom: 1px solid #ddd;
     transition: transform 0.3s ease-in-out;
 }


 th {
     background-color: #9575cd;
     color: white;
     font-weight: bold;
     text-transform: uppercase;
 }

 @media only screen and (max-width: 768px) {
   table {
    margin-left: 10px;
     width: 90%;
     border-collapse: separate;
     border-spacing: 0;
     border: none;
     border-radius: 20px;
     overflow: hidden;
     background-color: #fff;
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
 }
     th, td {
         padding: 12px;
     }
 }
