/* =========================================
   ✅ FLÈCHE TOUJOURS VISIBLE - VERSION ULTRA-FORCÉE
   ========================================= */

/* ✅ BOUTON TOGGLE - TRANSPARENT FORCÉ */
.dropbutton .dropbutton-toggle button,
.dropbutton-widget .dropbutton-toggle button,
.dropbutton-wrapper .dropbutton-toggle button {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  background: none !important;
  border: 1px solid #CBD5E1 !important;
  padding: 0 !important;
  width: 32px !important;
  height: 32px !important;
  box-shadow: none !important;
  text-shadow: none !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: visible !important;
  color: transparent !important;
}

/* ✅ CACHER la flèche originale de Drupal */
.dropbutton .dropbutton-arrow,
.dropbutton-toggle .dropbutton-arrow,
.dropbutton button .dropbutton-arrow,
.dropbutton-toggle button .dropbutton-arrow {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  color: transparent !important;
  background: none !important;
  background-image: none !important;
}

/* ✅ ✅ ✅ NOUVELLE FLÈCHE EN CSS - TOUJOURS VISIBLE ✅ ✅ ✅ */
.dropbutton .dropbutton-toggle button::after,
.dropbutton-widget .dropbutton-toggle button::after {
  content: "▼" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  
  /* ✅ CARACTÈRE UNICODE ▼ EN BLEU MARINE */
  font-size: 10px !important;
  font-weight: bold !important;
  color: #1a2644 !important;
  line-height: 1 !important;
  
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: none !important;
  z-index: 999 !important;
  background: transparent !important;
  background-image: none !important;
}

/* ✅ Hover */
.dropbutton .dropbutton-toggle button:hover {
  background: rgba(0, 0, 0, 0.04) !important;
  background-color: rgba(0, 0, 0, 0.04) !important;
  background-image: none !important;
}

.dropbutton .dropbutton-toggle button:hover::after {
  color: #0f172a !important;
}

/* ✅ Rotation quand ouvert */
.dropbutton.open .dropbutton-toggle button::after {
  content: "▲" !important;
}