    h2 {
      margin-bottom: 20px;
    } 

 .container {
      display: flex;
      height: calc(100vh - 220px);
      width: 100vw;
    }

    /* Colonne 1 : menu vertical */
    .col-menu {
      width: 75px;
	  height: calc(100vh - 220px);
      background-color: #2d2d2d;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0;
      gap: 10px;
    }

    .icon {
      width: 50px;
      height: 50px;
      background-color: #888;
      border-radius: 8px;
	  cursor: pointer;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  text-align: center;
	  color: white;
	  font-weight; bold;
    }
    .icon:hover {
      background-color: #DDD;
	  color: black;
    }

    /* Colonne 2 : carte */
    .col-map {
		position: relative;
      width: 45%;
      height: calc(100vh - 220px);
	  overflow: hidden;
    }

    .col-list {
		position: relative;
      width: 35%;
      height: calc(100vh - 220px);
	  overflow: hidden;
    }

    #map {
      width: 100%;
      height: 100%;
    }
	
    #list {
      width: 100%;
      height: 100%;
    }

    /* Colonnes 3 et 4 */
    .col {
      flex: 1;
      background-color: #f5f5f5;
      border-left: 1px solid #ddd;
	  height: calc(100vh - 220px);
    }
	
	
	
	
	
	
	
	
	ul#l {
      list-style: none;
      padding: 10px;
	  margin: 0;
    }

    ul#l li {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
	  background: #CCC;
	  padding: 5px;
    }
	ul#l li.active {
		background: white;
	}
	ul#l li.selected {
background: #00990022;
}
    ul#l li span:not(.slider) {
      width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 15px;
	margin-right: 10px;
	background: white;
	cursor: pointer;
    }
	
	/* Style du switch */
.switch {
  margin-left: auto;
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #999;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* Toggle activé */
.switch input:checked + .slider {
  background-color: #4caf50;
}

.switch input:checked + .slider:before {
  transform: translateX(18px);
}

.search-container {
  position: relative;
  margin: 10px 70px 0 10px;
}

.search-container input {
  width: 100%;
  padding: 10px 10px 10px 36px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f9f9f9 url('data:image/svg+xml;utf8,<svg fill="gray" viewBox="0 0 24 24" width="20" height="20" xmlns="http://www.w3.org/2000/svg"><path d="M10 2a8 8 0 105.293 14.293l4.707 4.707 1.414-1.414-4.707-4.707A8 8 0 0010 2zm0 2a6 6 0 110 12A6 6 0 0110 4z"/></svg>') no-repeat 10px center;
  background-size: 20px 20px;
  outline: none;
}

.encart {
  display: flex;
  align-items: center;
  background-color: #f4f4f4;
  border-left: 6px solid #a00;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  margin: 10px auto; 
}

.encart .emoji {
  font-size: 40px;
  margin-right: 15px;
}

.encart .texte h2 {
  margin: 0;
  font-size: 20px;
  color: #333;
}

.encart .texte p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #555;
}


.form-row {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1em;
    }
    .form-label {
      width: 100px;
      padding-top: 26px; /* pour aligner verticalement */
    }
    .field-group {
      display: flex;
	  flex: auto;
      flex-direction: column;
      margin-right: 1em;
    }
    input[readonly], input[readonly]::-webkit-inner-spin-button {
      background-color: #f0f0f0;
      color: #555;
      border: 1px solid #ccc;
    }
    .date-average {
      display: flex;
      gap: 0.5em;
      margin-top: 0.3em;
    }
    .date-average input[type="date"] {
      width: 200px;
    }
    .date-custom {
      display: flex;
      gap: 0.5em;
      margin-top: 0.3em;
    }
    input[type="number"] {
      width: 35px;
	  height: 30px;
      padding: 4px;
      font-size: 1em;
    }
    select {
      width: 120px;
	  height: 42px;
      padding: 4px;
      font-size: 1em;
    }
	.changed { background-color: #99000033; }
	.same { background-color: #00990033; }