.liste-bilans {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 700px;
  padding: 0 1rem;
}

.ligne-bilan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--clr-gray-50);
  border: 1px solid var(--clr-gray-200);
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bilan-btn {
  padding: 0.6rem 1rem;
  background-color: var(--clr-primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.bilan-btn:hover {
  background-color: var(--clr-primary-dark);
}


.delete-btn {
  background: none;
  border: none;
  color: #e11d48; /* rouge */
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.delete-btn:hover {
  color: #be123c;
}
