body .main-body .data-table table, th, td {
    border: 1px solid black;
    border-collapse: collapse; /* Collapses borders into a single line */
    padding: 8px; /* Adds space between content and borders */
    table-layout: fixed; 
    width: 60%;       /* A defined width is required */
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    font-family: 'Poppins', sans-serif !important;
}

body .main-body .data-table table th button{
    background-color: rgb(13, 167, 13);
    color: white;
    border: 3px solid rgb(13, 167, 13);
    border-radius: 6px;
    font-size: large;
    font-weight: 400;
    padding: 2px 2px;
    cursor: pointer;
}

body .main-body .header{

    margin-left: auto;
    margin-right: auto;
    width: 40%;
    color: blue;
}

body .main-body .data-table .Guidline
{
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

body .main-body .data-table .Guidline p{
  margin-bottom: 2rem;
}

body .main-body .data-table table{
    animation: slide-swipe 1s alternate forwards; 
}

@keyframes slide-swipe {
    /* Start off-screen to the left */
    from {
      transform: translateX(-100%); 
    }
    /* End at its default position */
    to {
      transform: translateX(0);
    }
}

body .main-body .data-table .topic-header{  
  margin-left: 20rem;
}

body .main-body .data-table{  
  margin-top: 3rem;
}

@media screen and (max-width: 600px) {

  body .main-body .header{
    width: 90%;
    margin-top: 0.9rem;
  }

  body .main-body .header h1{
    font-size: large;
  }

  body .main-body .data-table .topic-header{
    margin-left: 2rem;
    font-size: small;
  }

  body .main-body .data-table table, th, td{
    width: 90%;
    font-size: x-small;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
  }

  body .main-body .data-table table th button{
    font-size: x-small;
  }

}