/* Licznik Stanu - Frontend */

.fomo-bar {
    width: 100%;
    max-width: 400px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Track - kontener na segmenty */
.fomo-bar__track {
    display: flex;
    gap: 3px;
    height: 14px;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
}

/* Segment */
.fomo-bar__segment {
    flex: 1;
    border-radius: 3px;
    background: #e2e8f0;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Aktywne segmenty wg koloru */
.fomo-bar.fomo--green .fomo-bar__segment.fomo-bar__segment--active {
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

.fomo-bar.fomo--orange .fomo-bar__segment.fomo-bar__segment--active {
    background: #f59e0b;
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.4);
}

.fomo-bar.fomo--red .fomo-bar__segment.fomo-bar__segment--active {
    background: #ef4444;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

.fomo-bar.fomo--out .fomo-bar__segment {
    background: #e2e8f0;
}

/* Tekst pod paskiem */
.fomo-bar__text {
    margin-top: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #64748b;
}

.fomo-bar.fomo--green .fomo-bar__text {
    color: #16a34a;
}

.fomo-bar.fomo--orange .fomo-bar__text {
    color: #d97706;
}

.fomo-bar.fomo--red .fomo-bar__text {
    color: #dc2626;
}

.fomo-bar.fomo--out .fomo-bar__text {
    color: #94a3b8;
}

.fomo-bar.fomo--na .fomo-bar__text {
    color: #94a3b8;
}
