/* Minimale Anpassungen auf Pico CSS */

/* Fehlermeldungen */
.error {
  color: var(--pico-color-red-500);
}

/* Kursübersicht: Karten gleich hoch */
.grid article {
  display: flex;
  flex-direction: column;
}

.grid article footer {
  margin-top: auto;
}

/* Preistabelle kompakt */
table td:last-child,
table th:last-child {
  text-align: right;
}

/* Bestellbutton volle Breite auf Mobile */
@media (max-width: 576px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
