body {
  text-align: center;
  color: black;
}
a:link {
  color: black;
  background-color: transparent;
  text-decoration: underline;
  display: inline-table;
}
a:visited {
  color: black;
  background-color: transparent;
  text-decoration: underline;
  display: inline-table;
}
a:hover {
  color: black;
  background-color: transparent;
  text-decoration: underline;
  display: inline-table;
}
a:active {
  color: black;
  background-color: transparent;
  text-decoration: underline;
  display: inline-table;
}
input, output {
  display: block;
  margin: 10px auto;
}
/* Inline-block display for alignment and specifying widths */
.input_group label {
  display: inline-flex;
  margin-right: -20px; /* Adjust the space between the label and the text box */
  margin-left: 5px;
  /* Specify a width that works for your longest label */
  width: 100px; /* Adjust this as needed */
  text-align: right; /* Align the text to the right */
}

.input_group input {
  display: inline-block;
  /* Specify a width for your input */
  width: 200px; /* Adjust this as needed */
}

/* Clearfix for the .input-group to contain floated children */
.input_group::after {
  content: "";
  clear: both;
  display: table;
}

/* Margin for spacing between rows */
.input_group {
  margin-bottom: 10px;
}
/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  text-align: center;
  display: flex;
  justify-content: center;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0px 16px;
  transition: 0.3s;
  width: 210px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #008fcc;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #008fcc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #008fcc;
  border-top: none;
}
.link_button {
  display: inline-block;
}
h1 { /* If "Dmg calculations" is an <h1> element */
  margin-bottom: 0px; /* Reduce this value as needed */
}
.spacer {
  height: 0px; /* Adjust the height to control the space */
}
br {
  margin-top: -100px; /* Negative value to reduce space */
}
.button_link {
  display: flex;
  justify-content: center;
  margin-bottom: 20px; /* Adjust as needed for spacing between buttons */
}

.link-button {
  background-color: #0076a3; /* Blue background */
  color: black; /* White text */
  padding: 15px 32px; /* Padding for size */
  border: none; /* No border */
  border-radius: 10px; /* Rounded corners */
  text-align: center; /* Center text */
  text-decoration: none; /* No underline */
  display: inline-block; /* Allows setting dimensions */
  font-size: 16px; /* Text size */
  font-weight: 600; /* Bold font weight */
  cursor: pointer; /* Mouse pointer changes to hand icon */
  margin: 10px 0; /* Space above and below */
  width: 250px; /* Full width */
  white-space: nowrap;
  box-sizing: border-box; /* Include padding and border in the element's width and height */
}

.link-button:hover {
  background-color: #0076a3; /* Darker shade of the button color for hover state */
}
.link-button:link {
  background-color: #008fcc; /* Blue background */
  color: black; /* White text */
  padding: 15px 32px; /* Padding for size */
  border: none; /* No border */
  border-radius: 10px; /* Rounded corners */
  text-align: center; /* Center text */
  text-decoration: none; /* No underline */
  display: inline-block; /* Allows setting dimensions */
  font-size: 16px; /* Text size */
  cursor: pointer; /* Mouse pointer changes to hand icon */
  margin: 10px 0; /* Space above and below */
}
.link-button:active {
  background-color: #00374d; /* Blue background */
  color: black; /* White text */
  padding: 15px 32px; /* Padding for size */
  border: none; /* No border */
  border-radius: 10px; /* Rounded corners */
  text-align: center; /* Center text */
  text-decoration: none; /* No underline */
  display: inline-block; /* Allows setting dimensions */
  font-size: 16px; /* Text size */
  cursor: pointer; /* Mouse pointer changes to hand icon */
  margin: 10px 0; /* Space above and below */
}
