body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-color: transparent;
}

.converter {
  background-color: #fff;
  padding-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 400px;
  padding-bottom: 20px;
  padding-left: 60px;
  padding-right: 60px;
  margin-right: 30px;
  margin-left: 30px;
  min-height: 200px;
}

h1 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.input-section {
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  gap: 26px;
  flex-wrap: wrap;
}

input, select {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: auto;
  height: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 170px;
}

select {
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
  min-width: 256px;
  margin-right: 20px;
  height: 50px;
}

button {
  background-color: #0073e6;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 10px;
  font-size: 1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

button:hover {
  background-color: #005bb5;
}

#conversionRate {
  margin-top: 20px;
  font-size: 1em;
  color: #0073e6;
}

@media (max-width: 1500px) {
  button {
    display: none;
  }
}

#left-input {
  margin-top: 10px;
  margin-bottom: 10px;
}

