/* ── Big Midgie Widget Styles ─────────────────────────────────────────────── */
/* Scoped to .bigmidgie-widget so nothing leaks into the WordPress theme       */

.bigmidgie-widget {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #1c1e18;
    border-radius: 10px;
    padding: 16px 20px;
    min-width: 200px;
    max-width: 280px;
    box-sizing: border-box;
}

.bigmidgie-widget a {
    text-decoration: none;
    display: block;
    color: inherit;
}

.bigmidgie-widget a:hover {
    opacity: 0.85;
}

/* Loading state */
.bigmidgie-loading {
    font-size: 0.75rem;
    color: #7a7d6e;
    padding: 8px 0;
}

/* Inner layout: icon left, text right */
.bigmidgie-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Midge icon */
.bigmidgie-icon {
    flex-shrink: 0;
    transition: color 0.5s ease;
    line-height: 0;
}

/* Text block */
.bigmidgie-text {
    flex: 1;
    min-width: 0;
}

.bigmidgie-location {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a7d6e;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bigmidgie-risk {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
    transition: color 0.4s;
}

/* Risk colours */
.bigmidgie-risk.none     { color: #4a7c59; }
.bigmidgie-risk.low      { color: #7ab648; }
.bigmidgie-risk.moderate { color: #e09020; }
.bigmidgie-risk.high     { color: #d94020; }

/* Risk bar */
.bigmidgie-bar-track {
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #4a7c59 0%, #7ab648 25%, #c8c030 45%, #e09020 65%, #d94020 100%);
    position: relative;
    margin-bottom: 6px;
}

.bigmidgie-bar-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #e8e4d8;
    border: 2px solid #1c1e18;
    transition: left 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bigmidgie-advice {
    font-size: 0.68rem;
    color: #b0ad9e;
    line-height: 1.4;
}

.bigmidgie-footer {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #35382e;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bigmidgie-branding {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #44473a;
    font-weight: 600;
}

.bigmidgie-more {
    font-size: 0.6rem;
    color: #7a7d6e;
    letter-spacing: 0.04em;
}
