.ballistic-calculator {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
}

.ballistic-calculator h2 {
  text-align: center;
}

.ballistic-calculator form {
  display: flex;
  flex-direction: column;
}

.ballistic-calculator label {
  margin-top: 10px;
}

.ballistic-calculator input {
  padding: 10px;
  margin-top: 5px;
}

.ballistic-calculator button {
  margin-top: 20px;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.ballistic-calculator button:hover {
  background-color: #0056b3;
}

#results {
  margin-top: 20px;
  text-align: center;
}
