@charset "UTF-8";
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}
body header {
  background-color: #69181d;
  color: white;
  padding: 20px;
  text-align: center;
}
body header h1 {
  margin: 0;
  font-size: 2.5em;
}
body header nav {
  margin-top: 2px;
}
body header nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}
body header nav li {
  margin: 0 15px;
}
body header nav li a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}
body header nav li a:hover {
  text-decoration: underline;
}
body header .search-container {
  position: relative;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
}
body header .search-container .search-label {
  font-size: 1.2em;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
body header .search-container .search-input {
  width: 100%;
  padding: 12px;
  font-size: 1.2em;
  border: 2px solid #69181d;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: white;
  text-align: center;
}
body header .search-container .suggestions-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border: 1px solid #ddd;
  border-top: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: none;
}
body header .search-container .suggestions-list.visible {
  display: block;
}
body header .search-container .suggestions-list li {
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: black;
}
body header .search-container .suggestions-list li:hover {
  background-color: #f1f1f1;
}
body footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
  font-size: 1.1em;
}
body footer p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px;
}
body footer a:hover {
  text-decoration: underline;
  color: #fdda25;
}
body footer p a {
  margin: 0 10px;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 600px) {
  body footer p {
    flex-direction: column;
    align-items: center;
  }
  body footer p a {
    margin-bottom: 5px;
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
.percentage-dial {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #000;
}
.percentage-dial .circle {
  position: relative;
  width: 100%;
  height: 100%;
  background: conic-gradient(#69181d 0% 0%, #f0f0f0 0% 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.percentage-dial .circle .fill {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #acacac;
  border-radius: 50%;
  clip-path: circle(50%);
}
.percentage-dial .circle .needle {
  position: absolute;
  width: 3px; /* Largeur de l'aiguille */
  height: 50%; /* Longueur de l'aiguille (moitié du cercle) */
  background-color: #000;
  top: 50%;
  left: 50%;
  transform-origin: bottom center; /* Origine de rotation au bas de l'aiguille */
  transform: rotate(0deg); /* Valeur initiale de rotation */
  transition: transform 0.5s ease;
  margin-top: -50%; /* Pour que l'aiguille soit bien centrée sur le cercle */
}
.percentage-dial .percentage-text {
  position: absolute;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.RappDiv {
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.RappDiv table {
  width: 80%;
  margin: 20px auto;
  border-collapse: collapse;
  text-align: center;
}
.RappDiv table th, .RappDiv table td {
  padding: 10px;
  border: 1px solid #ccc;
}
.RappDiv table th {
  background-color: #f2f2f2;
  font-weight: bold;
}
.RappDiv table td a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}
.RappDiv table td a:hover {
  color: #007bff;
}
.RappDiv table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.RappDiv table tr:nth-child(odd) {
  background-color: #ffffff;
}/*# sourceMappingURL=rapport.css.map */