/* Make table responsive */
.normal-table {
  width: 100%;
  overflow-x: auto;
}

.normal-table table {
  width: 100%;
  border-collapse: collapse;
}

/* Styling for table headers and cells */
.normal-table th, .normal-table td {
  padding: 8px;
  text-align: center;
}

/* Adjusting styles for smaller screens */
@media (max-width: 767px) {
  .normal-table th, .normal-table td {
    padding: 2px;
    font-size: 8px;
  }
  
  .col-plan{
  	width: 70px;
  }
  
  .col-emi, .col-price, .col-pemi{
  	width: 50px;
  }

  /*.normal-table th[colspan], .normal-table td[rowspan] {*/
  /*  display: block;*/
  /*  width: 100%;*/
  /*}*/
}