body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  margin: 0;
  padding: 0;
  color: #333;
}

.calculator-container {
  max-width: 700px;
  margin: 50px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 30px;
  text-align: center;
}

h1 {
  margin-bottom: 10px;
  color: #222;
}

p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.input-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

label {
  font-weight: bold;
}

input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 150px;
  text-align: center;
}

button {
  padding: 10px 20px;
  background: #1e73be;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

button:hover {
  background: #155a8a;
}

.result-section {
  margin-top: 20px;
  text-align: left;
  background: #f4f7fb;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
  line-height: 1.5;
  white-space: pre-line;
}
