body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 600px;
}

h1 {
  margin-bottom: 20px;
}

.converter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.from-to {
  display: flex;
  flex-direction: column;
  width: 45%;
}

select, input {
  padding: 10px;
  margin-top: 10px;
  font-size: 16px;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}

button:hover {
  background-color: #45a049;
}

.all-results {
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
}

table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

th, td {
  padding: 10px;
  text-align: left;
  font-weight: bold;
}

th {
  background-color: #4CAF50;
  color: white;
}

td {
  background-color: #f2f2f2;
  border: 1px solid #ddd;
}

#all-results {
  font-size: 16px;
  font-weight: 500;
}
