/* heyde.schule - Modular CSS: 41_timeline.css */

/* --- Timeline & Status Cards (Added for Points Overhaul) --- */
.timeline {
    position: relative;
    padding-left: 30px;
    margin: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: var(--glass-border);
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-marker {
    position: absolute;
    left: -26px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--petrol-light);
    border: 2px solid var(--accent-1);
    z-index: 1;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px 16px;
    backdrop-filter: blur(5px);
    transition: transform 0.2s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.06);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-waiting { background: rgba(255, 165, 0, 0.15); color: orange; border: 1px solid orange; }
.status-confirmed { background: rgba(0, 255, 0, 0.1); color: #00ff00; border: 1px solid #00ff00; }
.status-rejected { background: rgba(255, 0, 0, 0.1); color: #ff4d4d; border: 1px solid #ff4d4d; }

.point-value-circle {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.point-positive { background: var(--petrol-light); color: var(--petrol-accent); border: 1px solid var(--petrol-accent); }
.point-negative { background: #4d100a; color: #ff4d4d; border: 1px solid #ff4d4d; }
