body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

header {
  text-align: center;
  margin-bottom: 20px;
}

.exchange-rates-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Nouveau style pour le sélecteur */
select {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* Style pour le sélecteur lorsqu'il est survolé */
select:hover {
  border-color: #aaa;
}

/* Style pour le sélecteur lorsqu'il est actif (sélectionné) */
select:focus {
  outline: none;
  border-color: #555;
  box-shadow: 0 0 5px rgba(85, 85, 85, 0.5);
}

.uline{
  list-style-type: none;
  padding: 0;

 }
 
 .iline{
  margin-bottom: 20px;
  margin-top: 10px;
 }
 
 .flag{
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-bottom: -4px;
 }

 .flagB{
  width: 32px;
  height: 32px;
  margin-right: 10px;
  margin-bottom: 8px;
  vertical-align: middle;
 }

/* Ajoutez ces styles pour personnaliser l'apparence de l'input */
input[type="number"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  margin-bottom: 20px;
}

/* Ajoutez ces styles pour masquer les flèches dans Firefox */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Ajoutez ces styles pour masquer les flèches dans WebKit (Chrome, Safari) */
input[type="number"] {
  -moz-appearance: textfield;
}