@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(to bottom, #c2e9ff, #007bff);
}

.card {
  width: 400px;
  height: 280px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.card-header {
  padding: 6px;
  text-align: center;
  border-bottom: none;
  font-size: 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.card-body {
  flex-grow: 1;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.column {
  flex-basis: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.column-title {
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
}

.emoji {
  font-size: 24px;
}

.column-text {
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
   margin-top: 12px; /* Distance entre emoji et valeurs */
}

.footer {
  text-align: center;
  color: white;
  margin-top: 10px;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
}

.city-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 4px 0 0 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}


.city-selector label {
  font-size: 14px;
  margin-right: 8px;
  font-weight: bold;
}

.city-selector select {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.city-selector label {
  margin-right: 6px;
}

.city-selector select {
  padding: 4px 8px;
  font-size: 14px;
  border-radius: 5px;
}

.city-selector label {
  margin-bottom: 8px; /* Espacement entre select city et menu deroulant */
}
