/**
 * Theme Name:      Divi Assistant Child Theme
 * Theme URI:       https://www.elegantthemes.com/gallery/divi/
 * Description:     A child theme for Divi created by Divi Assistant.
 * Author:          Pee-Aye Creative
 * Author URI:      https://www.peeayecreative.com/
 * Template:        Divi
 * Version:         1.0.0
 * Text Domain:     divi-assistant-child-theme
 * License:         GPL2
 * License URI:     https://www.gnu.org/licenses/gpl-2.0.html
 */
  
 
/* ---------------------- Theme customization starts here ---------------------- */

.veranstaltungen ul {
    list-style-type: none;
}

.veranstaltungen li {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.veranstaltungen img {
    max-width: 100px;
    height: auto;
}

.veranstaltungen-liste {
  display: grid;
  gap: 2rem;
}

.veranstaltung {
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fafafa;
}

.veranstaltung h3 {
  margin-top: 0;
}

.veranstaltungen-liste {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.veranstaltung-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.veranstaltung-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #0066cc;
}

.veranstaltung-daten {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ------------------------------------- sippung-form --------------------------------- */

.sippung-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.sippung-form-wrapper textarea,
.sippung-form-wrapper input[type="text"],
.sippung-form-wrapper input[type="date"],
.sippung-form-wrapper input[type="time"] {
    width: 100%;
    padding: 0.5em;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}
.sippung-form-wrapper label {
    font-weight: bold;
    margin-bottom: 0.3rem;
    display: block;
}
.sippung-form-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}
@media (max-width: 768px) {
    .sippung-form-buttons {
        flex-direction: column;
    }
    .sippung-form-buttons .et_pb_button {
        width: 100%;
    }
}
