/* CD Training Schedule v3.3 — Bootstrap-based, minimal custom CSS */

.cdts-wrap { --cdts-accent: #16a34a; }

/* Pulsing live dot — Bootstrap has no animated dot */
.cdts-live-dot,
.cdts-live-dot-sm {
    display: inline-block;
    border-radius: 50%;
    background: #16a34a;
    flex-shrink: 0;
    vertical-align: middle;
    animation: cdts-pulse 1.8s ease-in-out infinite;
}
.cdts-live-dot    { width: 8px; height: 8px; }
.cdts-live-dot-sm { width: 7px; height: 7px; }

@keyframes cdts-pulse {
    0%, 100% { opacity: 1;   transform: scale(1);    }
    50%       { opacity: .4; transform: scale(1.35); }
}

/* Amber prerequisite chip — Bootstrap has no amber badge */
.cdts-prereq-chip {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 1px 7px;
    border-radius: 10px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.6;
    white-space: nowrap;
}

/* JS row hiding — must beat Bootstrap's display rules at any viewport */
.cdts-row--hidden { display: none !important; }
