/* ======================================
   Fishing Summary UI
====================================== */

.fishing-summary {
    background: linear-gradient(180deg, #0f172a, #020617);
    color: #e2e8f0;
    padding: 16px 18px;
    border-radius: 14px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.05);
}

/* =========================
   HEADLINE
========================= */

.fs-headline {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.fs-headline strong {
    color: #ffffff;
}

.fs-sub {
    font-size: 14px;
    opacity: 0.75;
    margin-top: 2px;
}

/* =========================
   LIVE STATUS
========================= */

.fs-live {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 14px 0;
    font-size: 14px;
}

.fs-live-status {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.fs-live-next {
    opacity: 0.75;
    font-size: 13px;
}

/* =========================
   STATUS DOT
========================= */

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px rgba(255,255,255,0.2);
}

/* Activity colors */

.dot.extremely-active {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34,197,94,0.8);
}

.dot.very-active {
    background: #4ade80;
}

.dot.fairly-active {
    background: #84cc16;
}

.dot.moderately-active {
    background: #facc15;
}

.dot.slow {
    background: #ef4444;
}

/* =========================
   RECOMMENDATION
========================= */

.fs-recommendation {
    margin: 12px 0;
    font-size: 14px;
    line-height: 1.4;
}

.fs-recommendation strong {
    color: #ffffff;
}

/* =========================
   INSIGHTS ROW
========================= */

.fs-insights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    opacity: 0.8;
}

.fs-insights span {
    background: rgba(255,255,255,0.05);
    padding: 4px 8px;
    border-radius: 6px;
}

/* =========================
   MOBILE TWEAKS
========================= */

@media (max-width: 600px) {
    .fs-live {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .fs-headline {
        font-size: 16px;
    }
}