.stepostin-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  margin-top: 20px;
}

.stepostin-table-title {
  font-family: "Inter", sans-serif;
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #070707;
}

.stepostin-table-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
}

.stepostin-table-body {
  border-radius: 10px;
  border: 1px solid #070707;
  overflow: hidden;
}

.stepostin-table-row {
  display: flex;
  justify-content: space-between;
}

.stepostin-table-row.stepostin-table-header {
  background-color: #00643B;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
}

.stepostin-table-cell {
  flex: 1;
  text-align: center;
  color: #070707;
  padding: 14px 20px;
  border: 1px solid #070707;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 11px;
  box-sizing: border-box;
}

.stepostin-table-header .stepostin-table-cell {
  height: auto;
  border: none;
  text-align: left;
  height: 38px;
}

.stepostin-table-header .stepostin-table-cell:not(:last-child) {
  border-right: 2px solid #070707;
}

.stepostin-table-row:not(.stepostin-table-header) .stepostin-table-cell {
  height: 64px;
}

@media (min-width: 1024px) {
  .stepostin-table-cell {
    font-size: 15px;
  }
}