/* Styles personnalisés générés aléatoirement */

:root {
  --border-radius: 0.25rem;
  --box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.card {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.btn {
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.02);
}
