/* Container */
.tsv-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
}

/* --- COUNTDOWN --- */
.tsv-countdown {
    background: linear-gradient(135deg, #66C0F4 0%, #4fa8e0 100%);
    color: #fff;
    padding: 25px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(102, 192, 244, 0.3);
}
.tsv-cd-header { font-size: 0.9rem; letter-spacing: 2px; opacity: 0.9; margin-bottom: 10px; font-weight: bold; text-transform: uppercase; }
.tsv-cd-timer { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
.tsv-cd-timer div { display: flex; flex-direction: column; align-items: center; }
.tsv-cd-timer span { font-size: 3rem; font-weight: 800; line-height: 1; }
.tsv-cd-timer small { font-size: 0.8rem; text-transform: uppercase; opacity: 0.8; }
.tsv-cd-title { background: rgba(255,255,255,0.2); display: inline-block; padding: 5px 15px; border-radius: 20px; font-weight: 600; }

/* --- KARTEN LISTE (Übersicht) --- */
.tsv-card {
    background: #fff;
    border-left: 5px solid #66C0F4;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    display: flex;
    padding: 20px;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s;
    cursor: pointer; /* Zeigt an, dass die ganze Karte klickbar ist */
}

.tsv-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Linkes Datum */
.tsv-date {
    text-align: center;
    min-width: 60px;
    margin-right: 20px;
    border: 2px solid #333;
    padding: 10px 5px;
    border-radius: 4px;
}
.tsv-d { display: block; font-size: 1.8rem; font-weight: 800; color: #333; line-height: 1; }
.tsv-m { display: block; text-transform: uppercase; font-size: 0.9rem; font-weight: bold; color: #66C0F4; }

/* Info Bereich */
.tsv-info { flex-grow: 1; }
.tsv-info h3 { margin: 0 0 5px 0; font-size: 1.4rem; color: #222; font-weight: 700; }
.tsv-info h3 a { text-decoration: none; color: inherit; }
.tsv-loc { margin: 0 0 10px 0; color: #666; font-weight: 500; }
.tsv-time { color: #888; font-size: 0.85rem; text-transform: uppercase; }

/* Buttons Allgemein */
.tsv-btn {
    text-decoration: none;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid #66C0F4;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s;
    display: inline-block;
    color: #333;
    background: transparent;
}
.tsv-btn-link:hover { background: #66C0F4; color: #fff; }

/* --- DETAILANSICHT (Single Page) --- */
.tsv-single-box {
    margin-top: 30px;
    background: #f4f9fc;
    border: 1px solid #dbebf7;
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid #66C0F4;
}

.tsv-single-header { margin-top: 0; color: #333; }
.tsv-single-list { list-style: none; padding: 0; margin: 0 0 20px 0; }
.tsv-single-list li { margin-bottom: 10px; font-size: 1.1rem; }

.tsv-actions-single { display: flex; gap: 10px; flex-wrap: wrap; }
.tsv-btn-google { background: #fff; color: #66C0F4; border-color: #66C0F4; }
.tsv-btn-google:hover { background: #f0f8ff; }
.tsv-btn-ical { background: #66C0F4; color: #fff; border-color: #66C0F4; }
.tsv-btn-ical:hover { background: #4fa8e0; border-color: #4fa8e0; }

/* Mobile */
@media(max-width: 600px) {
    .tsv-card { flex-direction: column; text-align: center; }
    .tsv-date { margin: 0 0 15px 0; width: 100%; border: none; border-bottom: 2px solid #eee; display: flex; justify-content: center; gap: 5px; align-items: baseline; }
    .tsv-actions { justify-content: center; display: flex; }
    .tsv-actions-single { flex-direction: column; }
    .tsv-btn { width: 100%; text-align: center; }
}