/* Global */
body {
  font-family: 'Arial', sans-serif !important;
}

input[type="checkbox"] {
  transform: scale(1.5);
  margin-right: 25px;
}

button {
  cursor: pointer;
}

/* Page d'Accueil */
.link-light a {
  color: #000;
}

.link-dark a {
  color: #ffffff;
}

.link-light a:hover {
  background-color: #d3d3d3;
  color: #000;
}

.link-dark a:hover {
  background-color: #4d4d4d;
  color: #ffffff;
}

.link-full-width {
  display: block;
  width: 100%;
  padding: 0.25rem 1.25rem 0.75rem 1.25rem; /* Ajusté : plus d'espace en bas avant le trait */
  margin: 0rem -1.25rem;
  text-decoration: none;
  border-bottom: 1px solid #4e4d4d; /* Ajoute le trait fin séparateur gris clair */
}

/* Optionnel : supprime le trait sous le tout dernier bloc de la liste */
.link-full-width:last-child {
  border-bottom: none;
}

.urgents {
  display: block;
  width: 100%;
  padding: 0.25rem 1.25rem;
  margin: 0rem -1.25rem;
  color: #ea3d3d !important;
  text-decoration: none;
}

.urgents:hover {
  color: #ea3d3d !important;
}

.alertes {
  display: block;
  width: 100%;
  padding: 0.25rem 1.25rem;
  margin: 0rem -1.25rem;
  color: #f98181 !important;
  text-decoration: none;
  border-bottom: 1px solid #4e4d4d; /* Ajoute le trait fin séparateur gris clair */
}

.alertes:hover {
  color: #f98181 !important;
}
/* Admin */
form.inline {
  display: flex;
  gap: 6px;
  margin: 5px 0;
  align-items: center;
}

/* Notifications */
.message {
  padding: 10px;
  background-color: #e6ffe6;
  margin-bottom: 15px;
}

.description {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
}