/* Pergament Alerts for Utvist */
.alert-pergament {
  border: 2px solid #2a281f;
  border-radius: 0.5rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  font-family: "Cinzel", "Times New Roman", serif;
  background: #f8f1d4; /* Pergament-Grundfarbe */
  color: #2a281f;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.15), 0 4px 10px rgba(0,0,0,0.3);
  position: relative;
}

/* Dekorative Kanten */
.alert-pergament::before,
.alert-pergament::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 18px;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,0.07),
    rgba(0,0,0,0.07) 4px,
    transparent 4px,
    transparent 8px
  );
}
.alert-pergament::before { left: 0; }
.alert-pergament::after  { right: 0; }

/* Varianten */
.alert-pergament.success { border-color: #6da34d; background: #f1f8e0; }
.alert-pergament.danger  { border-color: #b43f3f; background: #fae0e0; }
.alert-pergament.warning { border-color: #a06d2f; background: #fbefd7; }
.alert-pergament.info    { border-color: #836a2b; background: #f6edd2; }
