body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  margin: 0;
  padding: 20px;
  color: #333;
}

.calculator-container {
  max-width: 700px;
  margin: 30px 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;
  display: block;
  margin-bottom: 5px;
}

input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  padding: 10px 20px;
  background: #1e73be;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

button:hover {
  background: #155a8a;
}

.reset-btn {
  background: #777;
}

.reset-btn:hover {
  background: #444;
}

.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.6;
  white-space: pre-line;
}
