/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 13 2026 | 06:49:51 */
/* Grundlayout */
.termin-liste {
    list-style: none;       /* keine Standard-Bullets */
    padding: 0;
    margin: 0;
}

/* Einzelner Termin */
.termin-liste li {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    transition: transform 0.2s;
}

/* Hover-Effekt */
.termin-liste li:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Titel hervorheben */
.termin-liste li h3 {
    color: #2c3e50;
    margin-bottom: 5px;
}

/* Datum & Kosten formatieren */
.termin-liste li p strong {
    color: #2c3e50;
}

.termin-liste li p:last-of-type {
    margin-bottom: 5px; /* oder 0, je nach Wunsch */
}

/* Abstand zwischen "Von" und "Bis" */
.termin-liste strong + strong {
    margin-left: 20px; 
}

/* Termin-Inhalt als Flexbox */
.termin-liste li {
    display: flex;
    flex-direction: column;
}

.termin-liste li .button-wrap {
    margin-top: auto;
    text-align: right;
}

.termin-liste li table {
    align-self: flex-start;
    width: auto !important;
}

.termin-liste table td,
.termin-liste table th {
    padding: 4px 8px; /* kleiner machen */
}