
    :root {
      --blue: #3f8efc;
      --orange: #ff9800;
      --violet: #9c27b0;
      --green: #4caf50;
      --gray: #9e9e9e;
	  --red: #e53935; 
	  --cyan: #00bcd4;
      --font: 'Arial', sans-serif;
      --border-radius: 12px;
      --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    body {
      margin: 6;
      font-family: var(--font);
      background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
      padding: 0em 1em;
    }

    h1 {
      text-align: center;
      font-size: 1.8em;
      margin: 0em;
    }
    h2 {
      text-align: center;
      font-size: 1,5em;
      margin: 0 0 0 0;
    }
    h3 {
      text-align: center;
      font-size: 1em;
      margin: 0 0 0 0;
    }
    .menu, .results-wrapper, .form-wrapper {
      border: 2px solid #ccc;
      border-radius: var(--border-radius);
      padding: 1em;
      box-shadow: var(--box-shadow);
      background-color: white;
      max-width: 420px;
      margin: 1em auto;
    }

    .menu {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }

    .btn {
      padding: 1em;
      border-radius: 10px;
      border: none;
      color: white;
      font-size: 1.2em;
      cursor: pointer;
    }
	.btn:hover {
		filter: brightness(0.8);
	}
	
	.btnCamoufle {
		background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
		color :  #f5f7fa;
		border: none;
      top: 20px;
      right: 20px;
	  padding: 0 0 0 0;
	}

    .blue { background-color: var(--blue); }
    .orange { background-color: var(--orange); }
    .violet { background-color: var(--violet); }
    .green { background-color: var(--green); }
    .red { background-color: var(--red); }
    .cyan { background-color: var(--cyan); }
    .gray { background-color: var(--gray); color: black;  }

    .hidden { display: none; }

    .filter {
      text-align: center;
      margin: 1em auto;
      max-width: 325px;
      padding: 0 1em;
    }
    .filter input {
      width: 80%;
      max-width: 90%;
      box-sizing: border-box;
      padding: 0.5em 0.75em;
      font-size: 1.4em;
      border: 2px solid #ccc;
      border-radius: var(--border-radius);
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1em;
      max-width: 420px;
      margin: 0 auto;
    }

    .msginfo {
		max-width: 420px;
		margin: 0 auto;
		text-align: center;
		color: var(--gray);
    }

    .results-wrapper {
      display: none;
    }

    .person-btn {
      border: none;
      border-radius: 25px;
      color: white;
      padding: 0.75em;
      text-align: center;
      cursor: pointer;
      font-size: 1em;
      word-wrap: break-word;
    }
	.person-btn:hover {
		filter: brightness(0.8);
	}

    .popup {
      position: fixed;
      top: 25%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      padding: 2em;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0,0,0,0.3);
      z-index: 1000;
      text-align: center;
    }
    .popup p {
      font-size: 1.3em;
      margin: 0;
    }
    .popup strong {
      display: block;
      margin-top: 0.2em;
      font-size: 1.5em;
    }

    .popup-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(5px);
      z-index: 999;
    }

    .popup button {
      margin-top: 1em;
      padding: 1em;
      border-radius: 10px;
      border: none;
      font-size: 1em;
      color: white;
      width: 100%;
    }

    .form-section input, .form-section select {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      margin-bottom: 1em;
      padding: 0.5em 0.75em;
      font-size: 1em;
      border: 2px solid #ccc;
      border-radius: var(--border-radius);
      box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    }

    .info {
      margin: 1em 0;
      font-weight: bold;
      text-align: center;
    }






.modern-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  text-align: center; /* Centre toutes les cellules */
}

.modern-table thead {
  background-color: #4f46e5; /* Indigo */
  color: white;
}

.modern-table th,
.modern-table td {
  padding: 5px 10px;
}

.modern-table tbody tr {
  border-bottom: 1px solid #ddd;
  transition: background-color 0.2s ease;
}

.modern-table tbody tr:hover {
  background-color: #f3f4f6; /* Light gray au survol */
}

/* Première ligne du corps en gras */
.modern-table tbody tr:first-child {
  font-weight: bold;
}
.modern-table td:first-child,
.modern-table th:first-child {
  white-space: nowrap;
}

    .btn-retour {
      position: fixed;
      top: 20px;
      right: 10px;
      background-color: var(--gray);
      color: white;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      font-size: 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      z-index: 1000;
    }

    .btn-retour:hover {
      filter: brightness(0.8);
    }
	
    .btn-retourhaut {
      position: absolute;
      right: 0;
	  top: 50px;
      left: -100px; /* le bouton est à -50px au-dessus du champ */
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #9e9e9e;
      border: none;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background-color 0.2s;
    }

    .btn-retourhaut:hover {
      filter: brightness(0.8);
    }
	
	