.calc-input {
  margin: 24px auto;
  max-width: 600px;
  font-family: sans-serif;
}

.calc-input table {
  width: 100%;
}

.calc-input th,
.calc-input td {
  padding: 12px;
  vertical-align: middle;
  font-size: 16px;
}

.calc-input th {
  background: var(--light);
  white-space: nowrap;
  width: 10%;
  border-right: 1px dashed var(--gray);
}

.calc-input td {
  background: #fff;
}

.calc-input input {
  width: 60px;
  padding: 10px;
  border: 1px solid var(--gray);
  border-radius: 8px;
}

.calc-submit {
  text-align: center;
  margin-top: 16px;
}

.calc-submit {
  background: var(--alert);
  color: var(--white);
  font-size: 16px;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.calc-submit:hover {
  filter: brightness(105%);
}

#calcResult {
  margin-top: 30px;
  padding: 30px;
  border-top: 2px dashed var(--minor);
  text-align: center;
}

#calcResult h3 {
  color: var(--minor);
  font-size: 24px;
}

#calcResult .price {
  font-size: 60px;
  color: var(--alert);
  font-weight: bold;
  line-height: 2;
}

#calcResult .note {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}


@media (max-width: 1024px) {
  .calc-input {
    width: 95%;
  }
  
}

@media (max-width: 768px) {
      

}
@media (max-width: 480px) {
      
}