.top-bar {
  position: relative;
  border-bottom: 2px solid #35687B;
  padding: 10px;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* logo */
.logo {
  width: auto;
  height: auto;
  margin-left: 10px;
  font-size: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #35687B;
}

.logo a {
  text-decoration: none;
  color: #35687B;
  display: flex; /* Rend la balise 'a' un conteneur flex */
  align-items: center; /* Centre verticalement les éléments */
  gap: 10px; /* Espace entre l'image et le texte */
}

.logo img {
  width: auto;
  height: 100px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0px 0px 40px 0px white;
}

/* barre de recherche */
.search-container {
  width: 100%;
  max-width: 300px;
  border: 2px solid #35687B;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  height: 30px;
  align-items: center;
}

.search-container form {
  display: flex;
  align-items: center;
  width: 100%;
}

.search-container input {
  padding: 8px;
  width: auto;
  font-size: 1rem;
  border-style: none;
  border-right: 2px solid #35687B;
  outline: none;
  height: 30px;
  background-color: white;
  flex: 1;
  min-width: 0;
}

.search-container button {
  width: 45px;
  padding: 0;
  background-color: white;
  border-style: none;
  height: 30px;
}

.search-container button img {
  height: 100%;
  cursor: pointer;
  background-color: white;
  max-height: 24px;
  object-fit: contain;
}

/* utilisateur */
.utilisateur {
  margin-right: 40px;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.utilisateur span {
  margin: 0;
  color: #333;
  font-size: 15px;
  line-height: 1;
  display: block;
}

.utilisateur a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  line-height: 1;
  display: block;
  margin: 0;
  text-align: center;
}

.utilisateur a:hover {
  color: #e6f0f4;
}

.utilisateur img {
  height: 20px;
  width: 20px;
  cursor: pointer;
  background-color: transparent;
  display: block;
  margin: 0 auto;
}

/* déconnexion */
.bonjour-deconnexion {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 0px;
  font-family: 'Edosz', Verdana, sans-serif;
}

.bonjour-deconnexion .bonjour-text {
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
}

.bonjour-deconnexion .logout-link {
  font-size: 13px;
  color: black;
  text-decoration: underline;
  cursor: pointer;
}
