* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif,
    sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6; 
  min-height: 100vh;
}

h1 {
  font-size: 1.5rem;
}

/* En-tête */
header {
  background-color: rgba(12,24,42,1);
  color: antiquewhite;
  padding: 1rem 2rem;
  text-align: center;
}

.breadcrumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  margin: 0 auto 0;
  max-width: 50%;
}

.breadcrumb div {
  width: 50px;
  height: 50px;
  border-radius: 50%; /* Cercles parfaits */
  background: lightgray; /* Couleur par défaut */
  text-align: center;
  line-height: 50px;
  font-weight: bold;
  color: black;
  transition: background 0.3s, transform 0.3s; /* Animation douce */
}

.breadcrumb div.active {
  background: antiquewhite; /* Étape active */
  color: rgba(12,24,42,1) ;
  transform: scale(1.2); /* Agrandissement */
}

.breadcrumb div.completed {
  background: #a99a87; /* Étapes terminées */
  color: rgba(12,24,42,1);
}

.breadcrumb div:hover {
  cursor: pointer;
  transform: scale(1.1); /* Effet au survol */
  background: lightblue; /* Surbrillance */
}

.global-layout {
  display: flex;
  height: 100vh;
}

/* Contenu principal */
.content {
  text-align: center;
  flex-direction: column;
  flex: 3;
  display: flex;
}

.main-content {
  flex: 3;
  background-color: rgba(12,24,42,1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.sidebar {
  flex: 0.7;
  background-color: rgb(4, 6, 8);
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.sidebar-content h1 {
  font-size: 24px;
  color: antiquewhite;
  font-weight: 700;
  margin-bottom: 40px;
}

.sidebar-content i {
  color: antiquewhite;
  margin-bottom: 40px;
}

.sidebar-content li {
  color: antiquewhite;
}

li {
  list-style: none;
  margin-bottom: 20px;
  text-align: left;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 800px;
  margin: 20px auto;
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.result-further-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  margin: 0 auto 0;
  max-width: 50%;
}

.result-further-links p {
  text-decoration: underline;
}

.container h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.container p {
  margin-bottom: 1rem;
  font-weight: 500;
}

.favicon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #f1f1f1;
  border-radius: 8px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.favicon-box:hover {
  transform: scale(1.1);
}

.favicon-box img {
  width: 24px;
  height: 24px;
}

input, select {
  min-width: 30%;
  max-width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  outline: none;
  background: white;
  transition: all 0.3s ease-in-out;
}

input:focus, select:focus {
  border-color: #007BFF;  /* Bleu épuré */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.4);
}

.helper {
  background-color:#ECF0F1;
  color: #333;
  padding: 0.5rem;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 40px auto 0;
}

button {
  background-color: #007bff;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin: 1rem;
}

button:hover {
  background-color: #0056b3;
}

footer {
  background-color: rgba(12,24,42,1);
  color: antiquewhite;
  text-align: center;
  position: relative;
  padding: 10px 20px;
  font-size: 0.9rem;
  bottom: 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sidebar {
    display: none !important;
  }

  .breadcrumb {
    max-width: 100%;
  }

  .container {
    width: 90%;
  }

  input, select {
    width: 100%;
  }

}
