/* Styles pour le dashboard */
.hover-lift {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.counter-value {
  transition: color 0.3s ease;
}

.card {
  transition: all 0.3s ease;
  border-radius: 0.75rem;
}

.avatar {
  transition: all 0.3s ease;
}

.avatar:hover {
  transform: scale(1.1);
}

.badge {
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.progress {
  overflow: hidden;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.05);
}

.progress-bar {
  transition: width 1s ease-in-out;
}

/* Animation pour les compteurs */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter-value {
  animation: countUp 0.5s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card {
    margin-bottom: 1rem;
  }
  
  .hover-lift:hover {
    transform: none;
  }
}
