/* Reset default styling */
body,
h1,
h2,
p {
  margin: 0;
  padding: 0;
}

/* Body and text styling */
body {
  font-family: "Amiri", serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Heading styling */
.heading {
  margin: 20px 0;
  font-family: "Lobster", cursive;
  color: #007bff;
}

/* Container styling */
.container {
  margin-top: 30px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Main section */
.main {
  padding: 20px;
}

/* Form group */
.form-group {
  margin-bottom: 15px;
}

/* Input field */
.form-control {
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

/* Prevent text wrapping in select options */
.form-control option {
  white-space: nowrap;
}

/* Button styling */
.btn {
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
}

/* Primary button */
.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  color: #ffffff;
}

/* Reset button */
.btn-primary.reset {
  background-color: #6c757d;
  border-color: #6c757d;
}

/* Center text */
.text-center {
  text-align: center;
}

/* Converted amount display */
#finalAmount {
  margin-top: 20px;
}

.finalValue {
  color: green;
  font-weight: bold;
}
