/* _content/PameKarysto.Web/Components/Layout/FerryScheduleWidget.razor.rz.scp.css */
/* MudPaper is the ROOT element => CSS isolation can't "reach" it with :deep unless there is a scoped parent.
   Use :global so we can make the Paper transparent (like the Weather widget background). */
:global(.pk-ferry-root.mud-paper)[b-gxjrkeflzr],
:global(.pk-ferry-root.mud-paper.mud-elevation-0)[b-gxjrkeflzr] {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
}

/* Optional: if MudPaper sets inline background via CSS var, this still wins in most cases */
:global(.pk-ferry-root.mud-paper)[b-gxjrkeflzr] {
    background-color: transparent !important;
}

.pk-ferry[b-gxjrkeflzr] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.pk-ferry-current[b-gxjrkeflzr],
.pk-ferry-forecast[b-gxjrkeflzr],
.pk-ferry-day[b-gxjrkeflzr],
.pk-ferry-empty[b-gxjrkeflzr] {
    box-sizing: border-box;
}

.pk-ferry-current[b-gxjrkeflzr] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    width: 100%;
    min-width: 0;
}

.pk-ferry-title[b-gxjrkeflzr] {
    font-size: 18px;
    font-weight: 800;
}

.pk-ferry-title-emoji[b-gxjrkeflzr] {
    margin-right: 8px;
    display: inline-block;
    transform: translateY(1px);
}

.pk-ferry-current-right[b-gxjrkeflzr] {
    width: 260px;
}

.pk-ferry-forecast[b-gxjrkeflzr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    width: 100%;
}

.pk-ferry-day[b-gxjrkeflzr] {
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    overflow: hidden;
}

.pk-ferry-day-ribbon[b-gxjrkeflzr] {
    box-sizing: border-box;
    height: 34px;
    padding: 0 10px;
    background: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    line-height: 1;
    font-size: 0.95rem;
}

.pk-ferry-day-ribbon-dow[b-gxjrkeflzr],
.pk-ferry-day-ribbon-date[b-gxjrkeflzr] {
    opacity: 0.95;
    white-space: nowrap;
}

/* Subtitle: compact one-line row */
.pk-ferry-day-subtitle[b-gxjrkeflzr] {
    box-sizing: border-box;
    padding: 5px 10px;
    font-size: 0.84rem;
    font-weight: 750;
    line-height: 1.1;
    text-align: center;
    opacity: 0.92;
    height: calc(1.1em + 10px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pk-ferry-day-subtitle--empty[b-gxjrkeflzr] {
    visibility: hidden;
}

.pk-ferry-day-body[b-gxjrkeflzr] {
    width: 100%;
    flex: 1 1 auto;
    overflow: auto;
    padding: 8px 8px 10px;
}

.pk-ferry-table[b-gxjrkeflzr] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: left;
}

.pk-ferry-row td[b-gxjrkeflzr] {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pk-ferry-row:last-child td[b-gxjrkeflzr] {
    border-bottom: none;
}

.pk-ferry-port[b-gxjrkeflzr] {
    white-space: nowrap;
    padding-right: 10px;
}

.pk-ferry-time[b-gxjrkeflzr] {
    text-align: right;
    white-space: nowrap;
}

.pk-ferry-row--past td[b-gxjrkeflzr] {
    color: rgba(0,0,0,0.42);
}

.pk-ferry-day--holiday[b-gxjrkeflzr] {
    border-color: rgba(127, 29, 29, 0.35);
    box-shadow: 0 0 0 1px rgba(127, 29, 29, 0.12);
}

    .pk-ferry-day--holiday .pk-ferry-day-ribbon[b-gxjrkeflzr] {
        background: linear-gradient(180deg, #991b1b 0%, #7f1d1d 100%);
        color: #ffffff;
        box-shadow: inset 0 -1px rgba(255,255,255,0.16);
    }

    .pk-ferry-day--holiday .pk-ferry-day-subtitle[b-gxjrkeflzr] {
        color: #7f1d1d;
        opacity: 0.95;
    }

/* Footer: now it will sit on the same gray background as Weather */
.pk-ferry-footer[b-gxjrkeflzr] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    opacity: 0.8;
    padding: 0 2px;
    flex-wrap: wrap;
}

.pk-ferry-footer-updated[b-gxjrkeflzr] {
    white-space: nowrap;
}

.pk-ferry-footer-disclaimer[b-gxjrkeflzr] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-style: italic;
}

@media (max-width: 520px) {
    .pk-ferry-footer[b-gxjrkeflzr] {
        gap: 6px;
    }

    .pk-ferry-footer-disclaimer[b-gxjrkeflzr] {
        white-space: normal;
    }
}

.pk-ferry-empty[b-gxjrkeflzr] {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px dashed rgba(0,0,0,0.25);
    opacity: 0.85;
}

@media (max-width: 600px) {
    .pk-ferry-current[b-gxjrkeflzr] {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .pk-ferry-current-right[b-gxjrkeflzr] {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .pk-ferry-forecast[b-gxjrkeflzr] {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
    }

    .pk-ferry-day-body[b-gxjrkeflzr] {
        padding: 8px 6px 10px;
    }

    .pk-ferry-table[b-gxjrkeflzr] {
        font-size: 0.86rem;
    }

    .pk-ferry-day-ribbon[b-gxjrkeflzr] {
        height: 32px;
        padding: 0 8px;
        font-size: 0.93rem;
    }

    .pk-ferry-day-subtitle[b-gxjrkeflzr] {
        padding: 5px 8px;
        font-size: 0.82rem;
        height: calc(1.1em + 10px);
    }

    .pk-ferry-row td[b-gxjrkeflzr] {
        padding: 5px 0;
    }
}
/* _content/PameKarysto.Web/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-u7x64y0dgu] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-u7x64y0dgu] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/PameKarysto.Web/Components/Layout/NewsWidget.razor.rz.scp.css */
.pk-news[b-a5j0gliu6n] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.pk-news-current[b-a5j0gliu6n],
.pk-news-forecast[b-a5j0gliu6n],
.pk-news-day[b-a5j0gliu6n],
.pk-news-empty[b-a5j0gliu6n] {
    box-sizing: border-box;
}

.pk-news-current[b-a5j0gliu6n] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    width: 100%;
    min-width: 0;
}

.pk-news-title[b-a5j0gliu6n] {
    font-size: 18px;
    font-weight: 800;
}

.pk-news-current-right[b-a5j0gliu6n] {
    width: 260px;
}

.pk-news-updated[b-a5j0gliu6n] {
    font-size: 12px;
    opacity: 0.8;
    text-align: right;
    white-space: nowrap;
}

/* Grid: 4 per row on desktop, responsive down to mobile */
.pk-news-forecast[b-a5j0gliu6n] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    padding: 2px 2px; /* inner “air” against section border */
    margin-top: 12px; /* <-- this is the missing gap vs Ferry */
}

@media (max-width: 1200px) {
    .pk-news-forecast[b-a5j0gliu6n] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .pk-news-forecast[b-a5j0gliu6n] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .pk-news-forecast[b-a5j0gliu6n] {
        grid-template-columns: 1fr;
    }
}

/* Card */
.pk-news-day[b-a5j0gliu6n] {
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

    .pk-news-day:hover[b-a5j0gliu6n] {
        border-color: rgba(37, 99, 235, 0.35);
        box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.12);
    }

/* Ribbon */
.pk-news-day-ribbon[b-a5j0gliu6n] {
    box-sizing: border-box;
    height: 34px;
    padding: 0 10px;
    background: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    line-height: 1;
    font-size: 0.95rem;
}

.pk-news-day-ribbon-domain[b-a5j0gliu6n] {
    opacity: 0.95;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Body */
.pk-news-day-body[b-a5j0gliu6n] {
    padding: 10px 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.pk-news-headline[b-a5j0gliu6n] {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.pk-news-meta[b-a5j0gliu6n] {
    font-size: 0.82rem;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pk-news-meta--empty[b-a5j0gliu6n] {
    visibility: hidden;
}

.pk-news-empty[b-a5j0gliu6n] {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px dashed rgba(0,0,0,0.25);
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pk-news-more[b-a5j0gliu6n] {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

/* Footer like Weather/Ferry */
.pk-news-footer[b-a5j0gliu6n] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    opacity: 0.8;
    padding: 0 2px;
    flex-wrap: wrap;
    margin-top: 10px; /* <-- matches the visual “breathing room” Ferry has */
}

.pk-news-footer-updated[b-a5j0gliu6n] {
    white-space: nowrap;
}

@media (max-width: 520px) {
    .pk-news-footer[b-a5j0gliu6n] {
        gap: 6px;
    }
}

@media (max-width: 600px) {
    .pk-news-current[b-a5j0gliu6n] {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .pk-news-current-right[b-a5j0gliu6n] {
        width: 100%;
    }

    .pk-news-updated[b-a5j0gliu6n] {
        text-align: left;
        white-space: normal;
    }
}

@media (max-width: 420px) {
    .pk-news-forecast[b-a5j0gliu6n] {
        gap: 8px;
    }

    .pk-news-day-body[b-a5j0gliu6n] {
        padding: 10px 8px 12px;
    }

    .pk-news-day-ribbon[b-a5j0gliu6n] {
        height: 32px;
        padding: 0 8px;
        font-size: 0.93rem;
    }
}
/* _content/PameKarysto.Web/Components/Layout/TopBar.razor.rz.scp.css */
.pk-appbar[b-zq2pi3q1wc] {
    padding-left: 16px;
    padding-right: 16px;
}

.pk-brand[b-zq2pi3q1wc] {
    cursor: pointer;
    user-select: none;
}

.pk-flag[b-zq2pi3q1wc] {
    font-family: "Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji",sans-serif;
    font-size: 18px;
    line-height: 1;
    margin-right: 8px;
}

.pk-flag-fi[b-zq2pi3q1wc] {
    width: 18px;
    height: 14px;
    border-radius: 3px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.pk-lang-text[b-zq2pi3q1wc] {
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

.pk-lang-btn[b-zq2pi3q1wc] {
    text-transform: none;
    font-size: 0.95rem;
}

.pk-lang-text[b-zq2pi3q1wc] {
    text-transform: none;
    letter-spacing: normal;
    font-variant: normal;
}

/* Make dropdown items match the activator text size */
:global(.pk-appbar .mud-menu .mud-list-item-text)[b-zq2pi3q1wc],
:global(.pk-appbar .mud-menu .mud-typography)[b-zq2pi3q1wc] {
    font-size: inherit;
}

/* Ensure the clickable row doesn’t bump the font size */
:global(.pk-appbar .mud-menu .mud-list-item)[b-zq2pi3q1wc] {
    font-size: inherit;
}
/* _content/PameKarysto.Web/Components/Layout/WeatherEvoikosWidget.razor.rz.scp.css */
.pk-marine[b-ufdlotpqs2] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
}

.pk-marine-empty[b-ufdlotpqs2] {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px dashed rgba(0,0,0,0.25);
    opacity: 0.85;
}

/* Same "card" feel as the weather widget */
.pk-marine-current[b-ufdlotpqs2] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.pk-marine-title[b-ufdlotpqs2] {
    font-size: 18px;
    font-weight: 800;
}

.pk-marine-current-left[b-ufdlotpqs2] {
    min-width: 0;
    flex: 1;
}

.pk-marine-current-details[b-ufdlotpqs2] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 10px;
}

/* KV row like the main widget */
.pk-marine-kv[b-ufdlotpqs2] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.9;
}

.pk-marine-current-right[b-ufdlotpqs2] {
    flex: 0 0 auto;
    white-space: nowrap;
}

/* Scoped copies of core weather widget bits */
.pk-weather-mini-icon[b-ufdlotpqs2] {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1;
}

.pk-wc-cloud[b-ufdlotpqs2] {
    color: #6b7280;
}

/* Standard blue arrow */
.pk-weather-wind-dir[b-ufdlotpqs2] {
    display: inline-block;
    font-size: 28px;
    line-height: 1;
    margin-left: 6px;
    transform-origin: 50% 50%;
    color: #2563eb;
}

/* For very strong winds */
.pk-wind-danger[b-ufdlotpqs2] {
    transform: scale(1.12);
}

/* Top-right wind block: final, de-duplicated rules */
.pk-marine-wind-kv[b-ufdlotpqs2] {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    opacity: 1;
    color: #111827;
}

    /* Wind glyph (wi-strong-wind): smaller, softer */
    .pk-marine-wind-kv .pk-weather-mini-icon[b-ufdlotpqs2] {
        font-size: 44px; /* match Bft text */
        line-height: 1;
        opacity: 0.65;
        color: rgba(17, 24, 39, 0.55);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        margin-right: 8px;
    }

        /* Ensure icon glyph centers inside the slot */
        .pk-marine-wind-kv .pk-weather-mini-icon[b-ufdlotpqs2]:before {
            width: 100%;
            display: inline-block;
            text-align: center;
            line-height: 1;
        }

    /* Big blue wind direction arrow */
    .pk-marine-wind-kv .pk-weather-wind-dir[b-ufdlotpqs2] {
        font-size: 64px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        transform-origin: 50% 50%;
        color: #2563eb;
        opacity: 1;
        translate: 0 2px; /* tiny nudge for visual centering */
    }

/* Make BFT same size/weight as the big number feel */
.pk-marine-wind-bft-big[b-ufdlotpqs2] {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

    .pk-marine-wind-bft-big[b-ufdlotpqs2],
    .pk-marine-wind-bft-big .pk-wind-bft-num[b-ufdlotpqs2],
    .pk-marine-wind-bft-big .pk-wind-bft-label[b-ufdlotpqs2] {
        font-size: 44px;
        font-weight: 900;
        line-height: 1;
        opacity: 1;
        color: rgba(17, 24, 39, 0.82);
    }

        .pk-marine-wind-bft-big .pk-wind-bft-label[b-ufdlotpqs2] {
            font-weight: 800;
        }

/* Waves */
.pk-marine-wave-icon[b-ufdlotpqs2] {
    color: #0ea5e9;
}

.pk-marine-wave-dir[b-ufdlotpqs2] {
    display: inline-block;
    line-height: 1;
    transform-origin: 50% 50%;
    color: #0ea5e9;
}

.pk-marine-wave-height[b-ufdlotpqs2] {
    line-height: 1.1;
    display: inline-block;
    vertical-align: middle;
}

/* Guaranteed waves icon (SVG), since some wi-* sets don't include waves */
.pk-marine-wave-svg[b-ufdlotpqs2] {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    color: #0ea5e9;
}

    .pk-marine-wave-svg path[b-ufdlotpqs2] {
        fill: none;
        stroke: currentColor;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* Forecast grid/cards like the main widget */
.pk-marine-forecast[b-ufdlotpqs2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    width: 100%;
}

.pk-marine-day[b-ufdlotpqs2] {
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.pk-marine-day-ribbon[b-ufdlotpqs2] {
    background: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
    font-weight: 800;
    line-height: 1;
}

.pk-marine-day-ribbon-dow[b-ufdlotpqs2],
.pk-marine-day-ribbon-date[b-ufdlotpqs2] {
    opacity: 0.95;
    white-space: nowrap;
}

.pk-marine-day-body[b-ufdlotpqs2] {
    padding: 10px 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    min-width: 0;
}

.pk-marine-row[b-ufdlotpqs2] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.9;
}

.pk-marine-text[b-ufdlotpqs2] {
    line-height: 1.1;
    display: inline-block;
    vertical-align: middle;
}

/* Footer */
.pk-marine-footer[b-ufdlotpqs2] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    opacity: 0.8;
    padding: 0 2px;
    flex-wrap: wrap;
}

.pk-marine-footer-updated[b-ufdlotpqs2] {
    white-space: nowrap;
}

/* Phone */
@media (max-width: 600px) {
    .pk-marine-current[b-ufdlotpqs2] {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .pk-marine-wind-bft-big[b-ufdlotpqs2],
    .pk-marine-wind-bft-big .pk-wind-bft-num[b-ufdlotpqs2],
    .pk-marine-wind-bft-big .pk-wind-bft-label[b-ufdlotpqs2] {
        font-size: 38px;
    }

    .pk-marine-wind-kv .pk-weather-wind-dir[b-ufdlotpqs2] {
        font-size: 58px;
    }
}

@media (max-width: 420px) {
    .pk-marine-forecast[b-ufdlotpqs2] {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
    }

    .pk-marine-day-body[b-ufdlotpqs2] {
        padding: 10px 6px 12px;
    }

    .pk-marine-day-ribbon[b-ufdlotpqs2] {
        padding: 7px 8px;
        font-size: 0.95rem;
    }
}

/* =========================
   Risk styling (CLEAN, no glow)
   ========================= */

/* Match ferry holiday vibe: border color + subtle 1px ring (NOT 3px glow) */
.pk-marine-day--warning[b-ufdlotpqs2] {
    border-color: rgba(217, 119, 6, 0.40);
    box-shadow: 0 0 0 1px rgba(217, 119, 6, 0.12);
}

.pk-marine-day--danger[b-ufdlotpqs2] {
    border-color: rgba(220, 38, 38, 0.40);
    box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.12);
}

.pk-marine-risk[b-ufdlotpqs2] {
    width: 100%;
    margin-top: 4px;
    padding: 0 6px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pk-marine-risk--warning[b-ufdlotpqs2] {
    color: rgb(180, 83, 9);
}

.pk-marine-risk--danger[b-ufdlotpqs2] {
    color: rgb(185, 28, 28);
}

/* Keep same height even when empty (reserved space) */
.pk-marine-risk--empty[b-ufdlotpqs2] {
    visibility: hidden;
}
/* _content/PameKarysto.Web/Components/Layout/WeatherWidget.razor.rz.scp.css */
.pk-weather[b-eng0mzofk3] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
}

.pk-weather-wind-dir[b-eng0mzofk3] {
    display: inline-block;
    font-size: 28px;
    line-height: 1;
    margin-left: 6px;
    transform-origin: 50% 50%;
    color: #2563eb;
}

.pk-weather-current[b-eng0mzofk3],
.pk-weather-forecast[b-eng0mzofk3],
.pk-weather-day[b-eng0mzofk3],
.pk-weather-empty[b-eng0mzofk3] {
    box-sizing: border-box;
}

.pk-weather-current[b-eng0mzofk3] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    width: 100%;
    min-width: 0;
}

.pk-weather-title[b-eng0mzofk3] {
    font-size: 18px;
    font-weight: 800;
}

.pk-title-short[b-eng0mzofk3] {
    display: none;
}

/* Footer: disclaimer next to updated time (not right-aligned) */
.pk-weather-footer[b-eng0mzofk3] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    opacity: 0.8;
    padding: 0 2px;
    flex-wrap: wrap;
}

.pk-weather-footer-updated[b-eng0mzofk3] {
    white-space: nowrap;
}

.pk-weather-footer-disclaimer[b-eng0mzofk3] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-style: italic;
}

@media (max-width: 520px) {
    .pk-weather-footer[b-eng0mzofk3] {
        gap: 6px;
    }

    .pk-weather-footer-disclaimer[b-eng0mzofk3] {
        white-space: normal;
    }
}

.pk-weather-current-details[b-eng0mzofk3] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 10px;
}

/* KV row: keep everything vertically aligned */
.pk-weather-kv[b-eng0mzofk3] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.9;
}

    .pk-weather-kv strong[b-eng0mzofk3] {
        font-weight: 800;
        opacity: 1;
    }

    /* Make "label + value" align nicely (fixes: 2 / Μποφόρ, 55%) */
    .pk-weather-kv span[b-eng0mzofk3],
    .pk-weather-kv strong[b-eng0mzofk3] {
        line-height: 1.1;
        display: inline-block;
        vertical-align: middle;
    }

/* Base mini icon size (used everywhere) */
.pk-weather-mini-icon[b-eng0mzofk3] {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1;
}

/* Current header row (sunrise/sunset/humidity/wind): fixed icon slot + true glyph centering */
.pk-weather-current-details .pk-weather-kv .pk-weather-mini-icon[b-eng0mzofk3] {
    width: 22px;
    display: inline-block; /* IMPORTANT: not inline-flex (weather-icons uses :before glyphs) */
    text-align: center;
    line-height: 1;
    margin: 0;
    padding: 0;
}

    /* Center the :before glyph inside the slot (fixes humidity vs sunset spacing) */
    .pk-weather-current-details .pk-weather-kv .pk-weather-mini-icon[b-eng0mzofk3]:before {
        width: 100%;
        display: inline-block;
        text-align: center;
    }

/* Current "main" area */
.pk-weather-current-main[b-eng0mzofk3] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.pk-weather-icon-current[b-eng0mzofk3] {
    font-size: 54px;
    line-height: 1;
}

.pk-weather-current-temp[b-eng0mzofk3] {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
}

/* Responsive grid without brittle breakpoints */
.pk-weather-forecast[b-eng0mzofk3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    width: 100%;
}

/* Day card */
.pk-weather-day[b-eng0mzofk3] {
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    overflow: hidden; /* ribbon follows rounded corners */
}

/* Date ribbon (top bar) */
.pk-weather-day-ribbon[b-eng0mzofk3] {
    background: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
    font-weight: 800;
    line-height: 1;
}

/* Ribbon text: keep compact and ellipsize nicely */
.pk-weather-day-ribbon-dow[b-eng0mzofk3],
.pk-weather-day-ribbon-date[b-eng0mzofk3] {
    opacity: 0.95;
    white-space: nowrap;
}

/* Body of the day card */
.pk-weather-day-body[b-eng0mzofk3] {
    padding: 10px 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    min-width: 0;
}

.pk-weather-icon-day[b-eng0mzofk3] {
    font-size: 28px;
    line-height: 1;
}

.pk-weather-day-temps[b-eng0mzofk3] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .pk-weather-day-temps .pk-weather-max[b-eng0mzofk3] {
        font-weight: 650;
        font-size: 0.88rem;
        line-height: 1.15;
    }

    .pk-weather-day-temps .pk-weather-min[b-eng0mzofk3] {
        font-weight: 400;
        font-size: 0.82rem;
        opacity: 0.7;
        line-height: 1.15;
    }

.pk-weather-day-sub[b-eng0mzofk3] {
    min-height: 22px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    /* Tighten spacing ONLY for the raindrop row */
    .pk-weather-day-sub.pk-weather-rainmm[b-eng0mzofk3] {
        gap: 2px;
    }

        /* Also remove any default icon spacing in the raindrop row */
        .pk-weather-day-sub.pk-weather-rainmm .wi[b-eng0mzofk3] {
            margin-right: 0;
        }

.pk-weather-placeholder[b-eng0mzofk3] {
    visibility: hidden;
}

.pk-wind-short[b-eng0mzofk3] {
    display: none;
}

.pk-weather-empty[b-eng0mzofk3] {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px dashed rgba(0,0,0,0.25);
    opacity: 0.85;
}

/* Icon colors (Weather Icons inherit text color) */
.pk-wc-sun[b-eng0mzofk3] {
    color: #f5b301;
}

.pk-wc-cloud[b-eng0mzofk3] {
    color: #6b7280;
}

.pk-wc-rain[b-eng0mzofk3] {
    color: #2563eb;
}

.pk-wc-snow[b-eng0mzofk3] {
    color: #0ea5e9;
}

.pk-wc-storm[b-eng0mzofk3] {
    color: #7c3aed;
}

.pk-wc-fog[b-eng0mzofk3] {
    color: #64748b;
}

/* Emphasize very strong Beaufort icons slightly */
.pk-weather-day-sub .wi-wind-beaufort-8[b-eng0mzofk3],
.pk-weather-day-sub .wi-wind-beaufort-9[b-eng0mzofk3],
.pk-weather-day-sub .wi-wind-beaufort-10[b-eng0mzofk3],
.pk-weather-day-sub .wi-wind-beaufort-11[b-eng0mzofk3],
.pk-weather-day-sub .wi-wind-beaufort-12[b-eng0mzofk3] {
    transform: scale(1.12);
}

/* Phone layout: stack current panel + tighten typography */
@media (max-width: 600px) {
    .pk-weather-current[b-eng0mzofk3] {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .pk-weather-current-main[b-eng0mzofk3] {
        justify-content: flex-start;
    }

    .pk-weather-icon-current[b-eng0mzofk3] {
        font-size: 46px;
    }

    .pk-weather-current-temp[b-eng0mzofk3] {
        font-size: 38px;
    }

    .pk-wind-long[b-eng0mzofk3] {
        display: none;
    }

    .pk-wind-short[b-eng0mzofk3] {
        display: inline;
    }

    .pk-title-long[b-eng0mzofk3] {
        display: none;
    }

    .pk-title-short[b-eng0mzofk3] {
        display: inline;
    }
}

/* Very small phones: slightly smaller forecast cards */
@media (max-width: 420px) {
    .pk-weather-forecast[b-eng0mzofk3] {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
    }

    .pk-weather-day-body[b-eng0mzofk3] {
        padding: 10px 6px 12px;
    }

    .pk-weather-day-ribbon[b-eng0mzofk3] {
        padding: 7px 8px;
        font-size: 0.95rem;
    }

    .pk-weather-icon-day[b-eng0mzofk3] {
        font-size: 26px;
    }

    .pk-weather-day-sub[b-eng0mzofk3] {
        font-size: 0.9rem;
    }
}
/* _content/PameKarysto.Web/Components/Pages/Contact.razor.rz.scp.css */
.pk-contact-page[b-13m1s45ubx] {
    position: relative;
    min-height: 50vh;
    font-size: 0.95rem;
    /* Also override Mud typography vars within this page */
    --mud-typography-body1-size: 0.95rem;
    --mud-typography-body2-size: 0.95rem;
    --mud-typography-subtitle2-size: 0.95rem;
}

    /* Force MudTextField label + input + helper/error text to match */
    .pk-contact-page[b-13m1s45ubx]  .mud-input-label,
    .pk-contact-page[b-13m1s45ubx]  .mud-input-slot,
    .pk-contact-page[b-13m1s45ubx]  .mud-input-slot input,
    .pk-contact-page[b-13m1s45ubx]  .mud-input-slot textarea,
    .pk-contact-page[b-13m1s45ubx]  .mud-input-helper-text,
    .pk-contact-page[b-13m1s45ubx]  .mud-input-error,
    .pk-contact-page[b-13m1s45ubx]  .mud-typography {
        font-size: 0.95rem !important;
    }

    /* Keep this page “no caps” only (inputs + labels + button label) */
    .pk-contact-page[b-13m1s45ubx]  .mud-input-label,
    .pk-contact-page[b-13m1s45ubx]  .mud-input-slot,
    .pk-contact-page[b-13m1s45ubx]  input,
    .pk-contact-page[b-13m1s45ubx]  textarea,
    .pk-contact-page[b-13m1s45ubx]  .mud-button-label {
        text-transform: none !important;
        letter-spacing: normal !important;
    }

/* Note sits above button and is part of the form */
.pk-contact-required-note[b-13m1s45ubx],
.pk-contact-required-note[b-13m1s45ubx]  * {
    opacity: 0.85;
    font-style: italic !important;
}

/* Card */
.pk-contact-card[b-13m1s45ubx] {
    max-width: 760px;
    margin: 24px auto;
    padding: 16px;
}

.pk-contact-actions[b-13m1s45ubx] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
}

/* Button: not full width, gradient */
.pk-contact-send[b-13m1s45ubx] {
    align-self: flex-start;
    min-width: 180px;
}

    .pk-contact-send.mud-button-filled[b-13m1s45ubx] {
        background: linear-gradient(90deg, #062a4a 0%, #0b4f7a 45%, #1183b6 100%) !important;
        color: #ffffff !important;
    }

/* Fade out the form wrapper */
.pk-contact-form[b-13m1s45ubx] {
    opacity: 1;
    transition: opacity 250ms ease;
}

    .pk-contact-form.pk-fade-out[b-13m1s45ubx] {
        opacity: 0;
        pointer-events: none;
    }

/* Thank-you centered */
.pk-contact-thanks[b-13m1s45ubx] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pk-contact-thanks.pk-show[b-13m1s45ubx] {
        opacity: 1;
    }

@media (min-width: 600px) {
    .pk-contact-card[b-13m1s45ubx] {
        padding: 20px;
    }

    .pk-contact-send[b-13m1s45ubx] {
        min-width: 220px;
    }
}
