@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto; /* Enables horizontal scroll for small screens */
}

table {
  font-family: Arial, sans-serif;
  width: 100%;
  border-collapse: collapse;
}

.bordered th,
.bordered td {
  border: 1px solid #000;
  text-align: left;
  padding: 15px;
  font-size: 18px;
}

.table_header{
  background-color: blue;
  color: white;
}

tbody td p {
  font-weight: 600;
}

tbody td h2 {
  font-weight: 600;
}

/* Media Queries */

/* Tablets and larger mobile devices */
@media (max-width: 1024px) {
  .container {
    padding: 10px;
  }

  table {
    width: 100%;
  }

  td,
  th {
    font-size: 16px;
    padding: 12px;
  }
  tr th {
    background-color: blue;
    color: white;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .container {
    padding: 8px;
  }

  table,
  th,
  td {
    font-size: 14px;
    padding: 10px;
  }
  tr th {
    background-color: blue;
    color: white;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .container {
    padding: 5px;
  }

  table,
  th,
  td {
    font-size: 12px;
    padding: 8px;
  }

  thead th {
    font-size: 14px;
  }

  tbody td {
    font-size: 12px;
  }

  tbody td p {
    font-weight: normal;
  }

  tbody td h2 {
    font-weight: normal;
  }
  tr th {
    background-color: blue;
    color: white;
  }
}
