html {
  height: 100%;
  width: 100%;
}

 body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      margin: 0;
      padding: 0;
    }
    header {
  background-color: #4CAF50;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
}

h1 {
  margin-bottom: 0.5rem;
}

h2 {
  margin-top: 2rem;
}

p {
  font-size: 1.1rem;
}

ul {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f4f4f4;
  border-radius: 10px;
}

.steps {
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  background-color: #4CAF50;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  margin-top: 2rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #3d8b40;
}
.result-container, .value-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.value-output {
  text-align: right;
}

/* Add this to your CSS file */
.grid-container {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 1rem;
  row-gap: 1rem;
}

.grid-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

table.table td {
  text-align: center;
  vertical-align: middle;
}
