.multi-speedup-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px; /* Increased space between each calculator/report */
  padding: 30px 20px;
}

.speedupCalc {
  border: 2px solid #ddd;
  padding: 25px;
  border-radius: 10px;
  background: #fff;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.suc-heading {
  margin-top: 0;
  font-size: 22px;
  padding-bottom: 6px;
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
  color: #222;
}

.speedup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.speedup-row label {
  flex: 1;
  font-weight: 600;
  color: #333;
}

.speedup-row input {
  width: 120px;
  padding: 8px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  text-align: right;
}

.result {
  margin-top: 20px;
  font-weight: bold;
  color: #0c7c59;
  text-align: center;
  font-size: 18px;
}

.speedupCalc,
.speedup-report {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}


.speedup-report {
  background: #f7fdf9;
  border: 1px solid #c8e6c9;
  padding: 20px;
  border-radius: 8px;
  max-width: 480px;
  margin: 0 auto 60px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
