/* ------------------------------
   Pfotenpass Configurator (Generator)
   ------------------------------ */
#pfotenpass-generator {
    display: flex;
    flex-direction: column;   /* Inhalte untereinander */
    justify-content: center;  /* vertikal mittig */
    align-items: center;      /* horizontal mittig */
     text-align: center;       /* Text mittig */
}

/* Pfotenpass Formular*/

.pfotenpass-card,
.pfotenpass-form {
    max-width: 600px;
    width: 100%;
}

#pfotenpass-generator .pfotenpass-form {
  border: 2px solid #a67c52;
  border-radius: 12px;
  padding: 20px;
  max-width: 350px; /* statt fester Breite */
  background: #262626;
  box-sizing: border-box; /* verhindert Layout-Konflikte */
}

#pfotenpass-generator .pfotenpass-form label.pfotenpass-label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

#pfotenpass-generator .pfotenpass-form input.pfotenpass-field,
#pfotenpass-generator .pfotenpass-form select.pfotenpass-select {
  width: 100%;
  padding: 6px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

#pfotenpass-generator .pfotenpass-form input.pfotenpass-submit {
  margin-top: 15px;
  padding: 10px;
  background: #ffcc66;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#pfotenpass-generator .pfotenpass-form input.pfotenpass-submit:hover {
  background: #ffb733;
}

#pfotenpass-generator .pfotenpass-success {
  margin-top: 15px;
  color: green;
  font-weight: bold;
}

/* ------------------------------
   Pfotenpass-Karte im Profil
   ------------------------------ */
#pfotenpass-profile .pfotenpass-card {
  border: 3px solid #a67c52;
  border-radius: 12px;
  padding: 20px;
  max-width: 300px;
  background: #fff8f0;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.2);
  margin-top: 20px;
  box-sizing: border-box;
}

#pfotenpass-profile .pfotenpass-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
  display: block;
}

#pfotenpass-profile .pfotenpass-badges .badge {
  display: inline-block;
  background: #ffcc66;
  border-radius: 6px;
  padding: 4px 8px;
  margin: 2px;
  font-size: 0.9em;
  white-space: nowrap; /* verhindert Umbruch */
}

/* ------------------------------
   Admin-Bereich
   ------------------------------ */
#pfotenpass-admin .pfotenpass-admin-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
}

#pfotenpass-admin .pfotenpass-admin-table th,
#pfotenpass-admin .pfotenpass-admin-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
  box-sizing: border-box;
}

#pfotenpass-admin .pfotenpass-admin-table th {
  background: #ffcc66;
}

/* ------------------------------
   Fertig erstellter Pfotenpass
   ------------------------------ */

.pfotenpass-card {
  border: 3px dashed #ff99cc;
  background: #7ac0d2;
  width: 560px;              /* feste Breite */
  height: 500px;             /* feste Höhe */
  padding: 5px;
  margin-top: 12px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.pfotenpass-card h3 {
  color: #cc3366;
  margin-bottom: 15px;
 font-size: 24px;
}

.pfotenpass-portrait img {
  max-width: 150px;
  border-radius: 5px;
  border: 4px solid #ffccdd;
  margin-bottom: 15px;
}

/* Rahmen für die Detailbox im Pfotenpass */
.pfotenpass-details {
  width: 80%;
  list-style: none;
  padding: 0;
  text-align: left;
  color: #c15c02;
  border: 2px solid #8b9dc3;   /* dezente Rahmenfarbe */
  border-radius: 10px;         /* abgerundete Ecken */
  padding: 15px;               /* Innenabstand für Luft */
  margin: 20px auto;           /* zentriert die Box horizontal */
  background-color: #c0e9ee;   /* sanfter Hintergrund */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* leichter Schatten */
}

.pfotenpass-details li {
  margin: 6px 0;
  font-size: 1.1em;
}

.pfotenpass-footer {
  margin-top: 15px;
  font-style: italic;
  color: #2c5b51;
text-align: center;
}

