table {background: rgba(0, 0, 0, 0.7);border: none;}
/* Style to make sub-menus appear on hover */
table {max-width: 1320px;width: 100%;
margin: 0 auto;
display: inline-block;
padding: 25px;
background: rgba(0, 0, 0, 0.7);
border: none;}
.vs-header {
  position: sticky;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);}
td {padding: 0 15px;}
    .page-transition {
      opacity: 0;
      transform: translateX(-50px); /* Start left */
      animation: fadeSlideIn 1s ease forwards;
    }

    @keyframes fadeSlideIn {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }