* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva,
    sans-serif, Helvetica, Arial, tahoma;
  background-color: #f0f0f0;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding-top: 20px;
}
.container {
  display: flex;
  justify-content: center;
  width: 100%;
}
#box {
  background-color: #262d34;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: auto;
  max-width: 90%;
  min-width: 300px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  overflow: hidden;
}
.title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
}
tr {
/*  display: flex; */
  justify-content: space-between;
  gap: 200px;
}
td {
  padding: 5px;
  vertical-align: top;
  white-space: nowrap;
}
td.left {
  text-align: left;
  font-weight: bold;
  flex: 1;
}
td.right {
  text-align: right;
  flex: 1;
  white-space: nowrap;
}
#box a {
  color: #fff;
  text-decoration: none;
}
#box a:hover {
  color: #fff;
}
button {
  background: #4f5b66;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}
button:hover {
  background: #3c444d;
}
.tooltip .tooltiptext {
  font-family: Arial, sans-serif;
}

@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
  tr {
    display: block;
  }
  td.left, td.right {
    width: 100%;
    text-align: center;
    display: block;
  }
  td.right {
    margin-top: 5px;
    white-space: normal;
  }
}
