/* Style für Kochbuch */
/*body {
  padding-bottom: 50px;
}
*/
.kochbuch-title {
  font-family: 'Pacifico', cursive;
  font-size: 3rem;
  color: #ffcc00; /* z. B. ein schönes Gelb */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.card {
  border: 2px solid orange;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px blue;
  /*font-family: Arial, sans-serif;
  color: black;*/
}

.admin-container {
  max-width: 600px;
  margin: 0 auto;
}

/* Rezeptliste links */

.rezepte-list {
  max-height: 70vh;
  overflow-y: auto;
}

.rezepte-list .list-group-item {
  background-color: #2a2a2a;
  border-color: #444;
  color: #fff;
  transition: background-color 0.2s ease;
}
.rezepte-list li:hover {
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

/* Footer */
.footer {
  border-top: 1px solid #ccc;
  border-width: 70%;
  font-size: 0.9rem;
  position: relative;
  bottom: 0;
  width: 100%;
  text-align: center;
}

/* Admin Rezeptliste */
.admin-rezepte-list-container {
  max-width: 800px;
  margin: 0 auto;
}

.admin-rezepte-list .list-group-item {
  background-color: #2a2a2a;
  border-color: #444;
  color: #fff;
  transition: background-color 0.2s ease;
}

.admin-rezepte-list .list-group-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.admin-rezepte-list .action-icons i {
  font-size: 1.2rem;
  margin-left: 8px;
}

/* =======================
   DRUCKSTYLES (Print)
   ======================= */
@media print {
  body {
    background: white !important;
    color: black !important;
    margin: 0;
    padding: 10mm;
    font-family: serif;
  }

  h1 {
    font-size: 24pt;
    margin-bottom: 10px;
  }

  h2 {
    font-size: 18pt;
    margin-top: 20px;
    margin-bottom: 5px;
  }

  p {
    font-size: 12pt;
    line-height: 1.4;
  }

  a,
  .no-print,
  nav,
  .btn,
  .card-header,
  .card-footer {
    display: none !important;
  }

  .container,
  .card,
  #rezept-detail {
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0;
    width: 100%;
  }
}

