body {
  font-family: Arial, sans-serif;
}

.calculator {
 
	
  background-color: #fff; 
  padding: 20px;
  border-radius: 15px;
  border:2px solid;
	box-shadow: 0 10 10px rgba(0, 0, 0, 0.2);
}

label {
  display: block;
  margin-bottom: 10px;
}

input[type="number"] {
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
}

button {
  background-color: blue; /* Green color for buttons */
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 15px;
}

.result {
  background-color: #ffff00; /* Yellow background color for result */
  color: #007d09; /* Green color for result text */
  font-size:20px;
  font-weight:700;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
}
