/* Container */
.dance-list {
    max-width: 900px;
    margin: 0 auto;
}

/* Sticky "Alle Events"-Button */
.ical-all-fixed {
    position: sticky;
    top: 10px;
    z-index: 999;
    text-align: center;
    padding: 8px 0;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ddd;
}

.ical-all-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #c4003b;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
}

.ical-all-button svg {
    fill: #fff;
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

.ical-all-button:hover {
    background-color: #a30032;
}

/* Tanz-Block */
.dance-block {
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Überschrift Tanz */
.dance-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
    border-left: 5px solid #c4003b;
    padding-left: 12px;
}

/* Event-Zeilen */
.dance-entry {
    display: grid;
    grid-template-columns: auto 1fr 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 12px;
    background-color: #fff;
    margin-bottom: 8px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: background 0.2s, box-shadow 0.2s;
}

.dance-entry:hover {
    background-color: #fce7f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dance-date {
    font-weight: 500;
    font-size: 1rem;
}

.dance-location {
    text-align: right;
    font-size: 0.95rem;
    opacity: 0.8;
}

.ical-link {
    align-self: center;
}

.ical-link svg {
    width: 16px;
    height: 16px;
    fill: #c4003b;
}
.dance-entry:focus,
.dance-entry:focus-visible,
.dance-entry:active,
.ical-link:focus,
.ical-link:focus-visible,
.ical-link:active {
    outline: none !important;
    box-shadow: none !important;
}

a {
    -webkit-tap-highlight-color: transparent;
}

/* Mobile Anpassung */
@media (max-width: 600px) {
    .dance-entry {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 10px 12px;
    }

    .dance-date,
    .dance-location {
        text-align: left;
        font-size: 0.9rem;
    }

    .ical-link {
        align-self: flex-end;
        margin-top: 4px;
    }

    .ical-link svg {
        width: 14px;
        height: 14px;
    }

    .ical-all-button {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    .ical-all-fixed {
        padding: 6px 0;
    }
}
/* --- Dance Color Accents --- */

.dance-langsamer-walzer .dance-title {
    border-left-color: #4f8edc;
}
.dance-langsamer-walzer .dance-entry:hover {
    background-color: rgba(79,142,220,0.12);
}

.dance-discofox .dance-title {
    border-left-color: #16a765;
}
.dance-discofox .dance-entry:hover {
    background-color: rgba(22,167,101,0.12);
}

.dance-tango .dance-title {
    border-left-color: #f83a22;
}
.dance-tango .dance-entry:hover {
    background-color: rgba(248,58,34,0.12);
}

.dance-cha-cha-cha .dance-title {
    border-left-color: #f691b2;
}
.dance-cha-cha-cha .dance-entry:hover {
    background-color: rgba(246,145,178,0.12);
}

.dance-wiener-walzer .dance-title {
    border-left-color: #fbe983;
}
.dance-wiener-walzer .dance-entry:hover {
    background-color: rgba(251,233,131,0.20);
}

.dance-foxtrott-boogie .dance-title {
    border-left-color: #9fe1e7;
}
.dance-foxtrott-boogie .dance-entry:hover {
    background-color: rgba(159,225,231,0.20);
}

.hidden-event {
    display: none !important;
}

.book-button {
    padding: 6px 10px;
    border-radius: 8px;
    border: none;
    background:#ffa41c;
    color: #111;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.book-button:hover {
  color: #111 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.book-button:active {
    color: #111;
    transform: translateY(1px);
}

.show-more {
       display:inline-block;
       text-decoration:none;
       background:#ffed00;
       color:#000;
       font-weight:600;
       padding:8px 12px;
       border-radius:4px;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.show-more:hover {
  color:#000 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}