/* ============================================
   PREDIGTLISTE – Styling
   ============================================ */

/* Wrapper */
.predigtliste-wrapper {
  max-width: 100%;
  overflow-x: auto;
  margin: 2rem auto;
  padding: 1rem;
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-family: system-ui, sans-serif;
}

/* Toggle oben */
.predigt-toggle-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0.75rem;
}

.toggle-label {
  font-weight: 600;
  color: #333;
}

.toggle-label select {
  margin-left: 0.5rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  background: #fff;
  transition: all 0.2s ease;
}

.toggle-label select:hover {
  border-color: #66b8b4;
}

/* ============================================
   Tabelle allgemein
   ============================================ */
.predigtliste {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  text-align: left;
}

.predigtliste th,
.predigtliste td {
  padding: 0.8rem 0.6rem;
  border-bottom: 1px solid #ddd;
}

.predigtliste th {
  background-color: #66b8b4;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.predigtliste td {
  background-color: #fff;
}

/* ============================================
   Spaltenbreiten und optische Akzente
   ============================================ */
.predigtliste .col-datum {
  width: 110px;
  font-weight: 600;
  color: #333;
}

.predigtliste .col-titel {
  width: 40%;
  color: #222;
  font-weight: 600;
}

.predigtliste .col-prediger {
  width: 25%;
  font-style: italic;
  color: #555;
}

.predigtliste .col-download {
  width: 15%;
  text-align: center;
}

/* ============================================
   Audio-Player & Download-Link
   ============================================ */
.predigt-download {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: #66b8b4;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.predigt-download:hover {
  background: #559a96;
}

.predigt-audio {
  width: 100%;
  max-width: 260px;
  height: 36px;
}

/* ============================================
   Nicht zugängliche Downloads
   ============================================ */
.predigt-noaccess {
  color: #aaa;
  font-style: italic;
  font-size: 0.9rem;
}

/* ============================================
   Mobile Darstellung
   ============================================ */
@media (max-width: 768px) {
  .predigtliste thead {
    display: none;
  }

  .predigtliste,
  .predigtliste tbody,
  .predigtliste tr,
  .predigtliste td {
    display: block;
    width: 100%;
  }

  .predigtliste tr {
    margin-bottom: 1.2rem;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 0.6rem;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  }

  .predigtliste td {
    border: none;
    padding: 0.4rem 0.2rem;
    position: relative;
    text-align: right;
  }

  .predigtliste td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    text-transform: uppercase;
    color: #66b8b4;
    font-size: 0.8rem;
  }

  .predigt-download,
  .predigt-noaccess {
    font-size: 0.85rem;
  }
}

/* ============================================
   Feine Übergänge und optische Details
   ============================================ */
.predigtliste tr:hover td {
  background-color: #f0fdfd;
  transition: background 0.3s ease;
}
