/* =============================================================
   Kurs Overview Table v5 — Frontend CSS
   Minimal base — most visual properties come from the scoped
   per-table <style> block generated by the shortcode.
   ============================================================= */

.kot-wrapper  { margin: 20px 0; }
.kot-title    { margin-bottom: 14px; }

.kot-tbl { border-collapse: collapse; }
.kot-tbl thead th,
.kot-tbl tbody td { vertical-align: middle; }

/* Loading pulse */
.kot-ld {
    color: #bbb;
    font-style: italic;
    font-size: 12px;
    animation: kot-pulse 1.3s ease-in-out infinite;
}
@keyframes kot-pulse {
    0%,100% { opacity: 1; }
    50%      { opacity: .2; }
}

/* Countdown badge */
.kot-cd {
    display: inline-block;
    margin-left: 6px;
    font-size: 11px;
    opacity: .75;
    vertical-align: middle;
}

/* CTA */
.kot-cta {
    display: inline-block;
    text-decoration: none !important;
    cursor: pointer;
    line-height: 1.4;
}
.kot-cta:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* Hidden filter rows */
.kot-row-hidden { display: none !important; }

/* Smooth horizontal scroll on small screens */
.kot-wrapper > div {
    -webkit-overflow-scrolling: touch;
}
