/* responsive_table.css */

table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid black;
}

th, td {
  border: 1px solid black;
  padding: 10px;
  text-align: center;
  font-size: 18px;
}

thead {
  background-color: #D9D9D9;
}

/* মোবাইলের জন্য মিডিয়া কুয়েরি */
@media (max-width: 768px) {
  th, td {
    font-size: 14px;
    padding: 6px;
  }
  h2 {
    font-size: 18px;
  }
  p, li {
    font-size: 16px;
  }
  table {
    min-width: 100%;
    table-layout: auto;
  }
}

@media (max-width: 480px) {
  th, td {
    font-size: 13px;
    padding: 5px;
  }
  h2 {
    font-size: 16px;
  }
  p, li {
    font-size: 15px;
  }
  table {
    min-width: 100%;
    table-layout: auto;
  }
}
