 .padding {
  padding: 40px;
 }

a {
  text-decoration: none;
}
a.back {
  display: flex;
  margin-right: 15px;
  margin-bottom: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.1);
}

a.back:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #00ff88;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
  transform: translateY(-1px);
}
a.forward {
  display: flex;
  flex-basis: right;
  margin-right: 15px;
  margin-bottom: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.1);
}

a.forward:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #00ff88;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
  transform: translateY(-1px);
}
.table-button-container {
  margin-top: 10px;
  margin-left: 50px;
  margin-right: 30px;
  display: flex;
  justify-content: space-between; /* pushes them apart */
  align-items: center;
  margin-bottom: 30px;
}
.banks-button {
  margin-left: -50px;
  margin-top: 30px;
}