/* ===STYLES INLINE POUR FOCUS (Action Accessibility #6)==== */
/* Focus visible pour accessibilité clavier */
*:focus {
  outline: 2px solid #0d6efd;
  outline-offset: 2px;
}

.form-control:focus,
.form-select:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}

/* Classe Bootstrap pour skip link */
.visually-hidden-focusable:focus {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 1rem;
  background: #0d6efd;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Assure contraste suffisant (Action Accessibility #3) */
.text-secondary {
  color: #6c757d !important; /* Contraste 4.5:1 minimum */
}

.form-text {
  font-size: 0.875rem;
  color: #6c757d;
}