/**
 * 📊 Progress Bar (Aufgabenstrahl)
 * Styles für Task-Fortschrittsbalken im Header
 */

/* ═══════════════════════════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════════════════════════ */

.strahl-container {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 60%;
    height: 10px;
    z-index: 10000;
    pointer-events: auto;
}

.strahl-basis {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

/* ═══════════════════════════════════════════════════════════
   MARKERS
   ═══════════════════════════════════════════════════════════ */

.strahl-markierung {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    z-index: 20;
    padding: 15px 5px;
}

.markierung-strich {
    width: 2.5px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.strahl-markierung:hover .markierung-strich {
    height: 17.44px;
    width: 2.57px;
    background: #fff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

.strahl-markierung.is-active .markierung-strich {
    background: var(--trenner-titel-color, #00ffcc);
    height: 20px;
    width: 3px;
    box-shadow: 0 0 15px var(--trenner-titel-color, #00ffcc);
}

/* ═══════════════════════════════════════════════════════════
   INFO TOOLTIP
   ═══════════════════════════════════════════════════════════ */

.markierung-info {
    position: absolute;
    top: -30px;
    font-size: 10px;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    padding: 3px 6px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.2s ease;
    pointer-events: none;
}

.strahl-markierung:hover .markierung-info {
    opacity: 1;
    transform: translateY(0);
}