@charset "UTF-8";

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  padding-top: 35px;
}

.table-container {
  max-width: 600px;
  margin: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.25;
}

tbody tr:first-child td {
  padding-top: 15px;
}

tbody tr:last-child td {
  padding-bottom: 25px;
}

td {
  padding: 10px;
  text-align: center;
  font-weight: 400;
}

th {
  padding: 10px;
  text-align: center;
  font-weight: 500;
}

th small {
  font-weight: 400;
}

th:first-child,
td:first-child {
  text-align: left;
  padding-left: 20px;
}

.header-row {
  background-color: #fff;
  text-align: left;
  font-size: 12px;
}

.pink-row {
  background-color: #f7e2e7;
  text-align: left;
}

.second-column {
  background-color: #f8f9fa;
}

.second-column td {
  color: #6c757d;
}

@media (max-width: 600px) {
  body {
    padding-top: 53px;
  }

  table {
    font-size: 9px;
    font-weight: 100;
    line-height: 1.2;
  }

  th,
  td {
    padding: 5px;
    font-size: 9px;
  }

  tbody tr:first-child td {
    padding-top: 10px;
  }

  tbody tr:last-child td {
    padding-bottom: 10px;
  }

}