.cards_overview_list {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto;
  gap: 1.5rem;
  width: 95%;
}

.overview_card {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid #2596be; /* Accent gauche de la marque */
  border-top: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
  min-height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.overview_card:hover {
  border-color: #2596be;
  box-shadow: 0 4px 12px rgba(37,150,190,0.15);
  transform: translateY(-2px);
}

.overview_card_left {
  display: flex;
  flex-direction: column; /* Force l'empilement vertical */
  gap: 0px;
  text-align: left;
}

.overview_card_category {
  color: #2596be !important; /* Bleu marque */
  font-size: 40px;
  font-weight: 800;
  display: block;
}

.overview_card_title {
  color: #2b2b2b !important; /* Noir forcé */
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  display: block; /* Sécurité pour l'empilement */
}

.overview_card_right {
  text-align: right;
}

.overview_card_content {
  color: #2b2b2b;
  font-size: 30px !important; /* Réduit pour plus de finesse */
  font-weight: 500; 
  white-space: nowrap;
}
