.seminar-buybox {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.seminar-buybox h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.4em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.seminar-preis {
    font-size: 1.1em;
    margin-bottom: 20px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    border-left: 3px solid #0073aa;
}

.preis-wert {
    font-weight: bold;
    color: #0073aa;
    font-size: 1.2em;
}

.preis-hinweis {
    font-size: 0.85em;
    color: #666;
    display: inline-block;
    margin-left: 5px;
}

.termine-liste {
    margin-bottom: 20px;
}

.termin-item {
    margin-bottom: 12px;
}

.termin-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease;
    background-color: #fff;
}

.termin-radio-label:hover {
    background-color: #f0f8ff;
    border-color: #0073aa;
}

.termin-radio-label input[type="radio"] {
    margin-right: 15px;
}

.termin-radio-label input[type="radio"]:checked + .termin-details {
    font-weight: 600;
}

.termin-radio-label:has(input[type="radio"]:checked) {
    background-color: #e6f3ff;
    border-color: #0073aa;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.termin-details {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.termin-datum {
    display: flex;
    flex-direction: column;
    margin-right: 25px;
    min-width: 100px;
}

.termin-tag {
    font-weight: bold;
    color: #666;
    text-transform: uppercase;
    font-size: 0.85em;
}

.termin-date {
    font-weight: bold;
    font-size: 1.1em;
}

.termin-zeit {
    margin-right: 25px;
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
}

.termin-plaetze {
    color: #666;
    text-align: right;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.anmeldung-buttons {
    text-align: right;
    margin-top: 20px;
}

.anmelden-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.anmelden-button:hover {
    background-color: #005d8c;
}

.preis-label {
    color: #000000 !important;
}

.termin-date {
    color: #000000 !important;
}

.termin-zeit {
    color: #000000 !important;
}

/* Responsives Design */
@media (max-width: 768px) {
    .termin-details {
        flex-direction: column;
    }
    
    .termin-datum, .termin-zeit {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .termin-plaetze {
        text-align: left;
        justify-content: flex-start;
    }
    
    .anmeldung-buttons {
        text-align: center;
    }
    
    .anmelden-button {
        width: 100%;
    }
}