/*
 Theme Name:   RefKirche
 Description:  
 Author:       Kellenberger Interactive
 Author URI:   https://kellenberger-interactive.ch
 Template:     Divi
 Version:      1.0
 Text Domain:  refkirche
*/

.fupi_buttons button {
    border: none;
}

.gform_required_legend {
	display: none !important;
}

/* Termin-Tabellen */
.termine {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* sorgt für gleiche Spaltenbreiten in jeder Tabelle */
  margin-top: 25px !important;
}

/* Feste, in jeder Tabelle identische Spaltenbreiten */
.termine .termine_datum {
  width: 25%;
}

.termine .termine_anlass {
  width: 35%;
}

/* Die Info-Spalte (dritte Spalte) nimmt den Rest */
.termine thead td:last-child {
  width: 40%;
}

/* Titelzeile fett */
.termine thead td {
  font-weight: bold;
  font-size: 14px;
}

/* Zellen-Grundstil */
.termine td {
  padding: 10px 12px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
  text-align: left;
}

.termine a:hover {
  text-decoration: underline;
}

/* Absätze in Zellen nicht zu viel Abstand */
.termine td p {
  margin: 0 0 6px;
}

.termine td p:last-child {
  margin-bottom: 0;
}

/* ===== Mobile Darstellung ===== */
@media (max-width: 600px) {
  /* Tabelle in Kartenform aufbrechen */
  .termine,
  .termine tbody,
  .termine tr,
  .termine td {
    display: block;
    width: 100%;
  }

  /* Kopfzeile ausblenden, da Labels pro Zelle gesetzt werden */
  .termine thead {
    display: none;
  }

  .termine tbody tr {
    margin-bottom: 16px;
    border: 1px solid #ddd;
    overflow: hidden;
    background: #fff;
  }

  .termine tbody tr:nth-child(even) {
    background: #fff;
  }

  .termine td {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 10px 14px;
  }

  .termine td:last-child {
    border-bottom: none;
  }
}