.lpcr {
    --lpcr-bg: rgba(255, 255, 255, 0.03);
    --lpcr-border: rgba(255, 255, 255, 0.08);
    --lpcr-text: #f5f5f7;
    --lpcr-muted: rgba(245, 245, 247, 0.55);
    --lpcr-level: #9aa0a6;
    margin: 48px 0;
    color: var(--lpcr-text);
}

.lpcr *,
.lpcr *::before,
.lpcr *::after {
    box-sizing: border-box;
}

/* ---------------------------------------------------------------- Head */

.lpcr_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.lpcr_kicker {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rouge, #e12523);
    margin-bottom: 6px;
}

.lpcr_title {
    margin: 0;
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.2;
    font-weight: 800;
    color: var(--lpcr-text);
}

.lpcr_datepick {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--lpcr-border);
    border-radius: 10px;
    background: var(--lpcr-bg);
    color: var(--lpcr-muted);
}

.lpcr_dateinput {
    background: none;
    border: 0;
    color: var(--lpcr-text);
    font-size: 14px;
    font-family: inherit;
    padding: 0;
    color-scheme: dark;
}

.lpcr_dateinput:focus-visible {
    outline: 2px solid var(--rouge, #e12523);
    outline-offset: 3px;
}

/* ------------------------------------------- Calendrier d'affluence */

.lpcr_datefield {
    position: relative;
}

/* Le champ natif reste dans le DOM comme source de vérité, mais s'efface
   dès que le calendrier est monté. */
.lpcr_datefield.is-enhanced .lpcr_datepick {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.lpcr_cal_toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border: 1px solid var(--lpcr-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--lpcr-text);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.lpcr_cal_toggle:hover {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.lpcr_cal_toggle:focus-visible {
    outline: 2px solid var(--rouge, #e12523);
    outline-offset: 2px;
}

.lpcr_cal_toggle > svg:first-child {
    color: var(--lpcr-muted);
}

.lpcr_cal_toggle_label {
    text-transform: capitalize;
}

.lpcr_cal_caret {
    color: var(--lpcr-muted);
    transition: transform 0.18s ease;
}

.lpcr_datefield.is-open .lpcr_cal_caret {
    transform: rotate(180deg);
}

.lpcr_cal_panel {
    position: absolute;
    z-index: 40;
    top: calc(100% + 8px);
    right: 0;
    width: min(340px, calc(100vw - 32px));
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: #1c1f26;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
}

.lpcr_cal_panel[hidden] {
    display: none;
}

.lpcr_cal_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.lpcr_cal_month {
    font-size: 15px;
    font-weight: 700;
    color: var(--lpcr-text);
    text-transform: capitalize;
}

.lpcr_cal_nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--lpcr-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--lpcr-text);
    cursor: pointer;
    transition: background 0.15s ease, opacity 0.15s ease;
}

.lpcr_cal_nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
}

.lpcr_cal_nav:disabled {
    opacity: 0.3;
    cursor: default;
}

.lpcr_cal_week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 4px;
}

.lpcr_cal_week span {
    text-align: center;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lpcr-muted);
}

.lpcr_cal_grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    transition: opacity 0.15s ease;
}

.lpcr_cal_grid.is-loading {
    opacity: 0.4;
}

.lpcr_cal_pad {
    display: block;
}

.lpcr_cal_day {
    --lpcr-level: rgba(255, 255, 255, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    min-height: 42px;
    padding: 4px 2px;
    border: 1px solid transparent;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--lpcr-text);
    font-family: inherit;
    cursor: pointer;
    transition: background 0.12s ease, border-color 0.12s ease;
}

.lpcr_cal_day:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.12);
}

.lpcr_cal_day:focus-visible {
    outline: 2px solid var(--rouge, #e12523);
    outline-offset: 1px;
}

.lpcr_cal_day.is-out {
    opacity: 0.22;
    cursor: default;
}

/* Dans la plage annoncée mais pas encore calculé : un peu plus visible qu'un
   jour hors plage, pour qu'on comprenne que la donnée manque. */
.lpcr_cal_day.is-empty {
    opacity: 0.45;
    cursor: default;
    background: none;
    border-style: dashed;
    border-color: var(--lpcr-border);
}

.lpcr_cal_num {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.1;
}

/* Le niveau d'affluence est porté par une pastille sous le chiffre :
   teinter tout le fond rendrait les nombres illisibles. */
.lpcr_cal_wait {
    font-size: 9.5px;
    font-weight: 700;
    line-height: 1;
    color: var(--lpcr-level);
}

.lpcr_cal_day--tres-calme { --lpcr-level: #34d399; }
.lpcr_cal_day--calme      { --lpcr-level: #a3e635; }
.lpcr_cal_day--modere     { --lpcr-level: #fbbf24; }
.lpcr_cal_day--charge     { --lpcr-level: #fb923c; }
.lpcr_cal_day--sature     { --lpcr-level: #f87171; }

@supports (background: color-mix(in srgb, red 10%, transparent)) {
    .lpcr_cal_day--tres-calme,
    .lpcr_cal_day--calme,
    .lpcr_cal_day--modere,
    .lpcr_cal_day--charge,
    .lpcr_cal_day--sature {
        background: color-mix(in srgb, var(--lpcr-level) 14%, transparent);
    }

    .lpcr_cal_day--tres-calme:hover:not(:disabled),
    .lpcr_cal_day--calme:hover:not(:disabled),
    .lpcr_cal_day--modere:hover:not(:disabled),
    .lpcr_cal_day--charge:hover:not(:disabled),
    .lpcr_cal_day--sature:hover:not(:disabled) {
        background: color-mix(in srgb, var(--lpcr-level) 26%, transparent);
    }
}

.lpcr_cal_day.is-closed {
    --lpcr-level: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.03);
}

.lpcr_cal_day.is-selected {
    border-color: var(--lpcr-level);
    background: rgba(255, 255, 255, 0.16);
}

.lpcr_cal_legend {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--lpcr-border);
}

.lpcr_cal_legend_item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--lpcr-muted);
}

.lpcr_cal_legend_item i {
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background: var(--lpcr-level);
}

.lpcr_cal_legend_item--tres-calme { --lpcr-level: #34d399; }
.lpcr_cal_legend_item--calme      { --lpcr-level: #a3e635; }
.lpcr_cal_legend_item--modere     { --lpcr-level: #fbbf24; }
.lpcr_cal_legend_item--charge     { --lpcr-level: #fb923c; }
.lpcr_cal_legend_item--sature     { --lpcr-level: #f87171; }

@media (max-width: 480px) {
    .lpcr_cal_panel {
        right: auto;
        left: 0;
    }
}

/* --------------------------------------------------------- Bandeau jours */

.lpcr_days {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 16px;
    scrollbar-width: thin;
}

.lpcr_day {
    flex: 0 0 auto;
    width: 74px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 6px;
    border: 1px solid var(--lpcr-border);
    border-radius: 12px;
    background: var(--lpcr-bg);
    color: var(--lpcr-muted);
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.lpcr_day:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.lpcr_day.is-active {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--lpcr-level);
    color: var(--lpcr-text);
}

.lpcr_day_wd {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lpcr_day_num {
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    color: var(--lpcr-text);
}

.lpcr_day_icon {
    color: var(--lpcr-level);
    line-height: 0;
}

.lpcr_day_wait {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

/* -------------------------------------------------------- Niveaux couleur */

.lpcr_day--tres-calme, .lpcr_card--tres-calme { --lpcr-level: #34d399; }
.lpcr_day--calme,      .lpcr_card--calme      { --lpcr-level: #a3e635; }
.lpcr_day--modere,     .lpcr_card--modere     { --lpcr-level: #fbbf24; }
.lpcr_day--charge,     .lpcr_card--charge     { --lpcr-level: #fb923c; }
.lpcr_day--sature,     .lpcr_card--sature     { --lpcr-level: #f87171; }

/* --------------------------------------------------------------- Panneau */

.lpcr_panel.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

.lpcr_card {
    border: 1px solid var(--lpcr-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    padding: 22px;
}

@supports (background: color-mix(in srgb, red 10%, transparent)) {
    .lpcr_card {
        background:
            radial-gradient(120% 100% at 0% 0%, color-mix(in srgb, var(--lpcr-level) 12%, transparent) 0%, transparent 60%),
            rgba(255, 255, 255, 0.025);
    }
}

.lpcr_card_main {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lpcr_bigicon {
    flex: 0 0 auto;
    color: var(--lpcr-level);
    line-height: 0;
}

.lpcr_card_text {
    min-width: 0;
}

.lpcr_card_date {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lpcr-muted);
    margin-bottom: 4px;
}

.lpcr_card_level {
    display: block;
    font-size: clamp(20px, 3.4vw, 28px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--lpcr-level);
}

.lpcr_gauge {
    position: relative;
    height: 7px;
    width: min(320px, 60vw);
    margin-top: 12px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.lpcr_gauge_fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--v, 0%);
    border-radius: 99px;
    background: var(--lpcr-level);
}

@supports (background: color-mix(in srgb, red 10%, transparent)) {
    .lpcr_gauge_fill {
        background: linear-gradient(to right, color-mix(in srgb, var(--lpcr-level) 55%, #000), var(--lpcr-level));
    }
}

.lpcr_card_index {
    display: inline-block;
    margin-top: 6px;
    font-size: 15px;
    font-weight: 700;
}

.lpcr_card_index small {
    font-weight: 500;
    color: var(--lpcr-muted);
}

/* -------------------------------------------------------------- Métriques */

.lpcr_metrics {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin: 20px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid var(--lpcr-border);
}

.lpcr_metrics li {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lpcr_metric_label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--lpcr-muted);
}

.lpcr_metric_value {
    font-size: 15px;
    font-weight: 700;
}

/* La météo garde une teinte neutre : la couleur du widget code l'affluence,
   pas le temps qu'il fera. */
.lpcr_metric_value--weather {
    display: flex;
    align-items: center;
    gap: 7px;
}

.lpcr_metric_value--weather .lpcr_svg {
    flex: 0 0 auto;
    color: var(--lpcr-muted);
}

.lpcr_conf {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.lpcr_conf::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.lpcr_conf--high { color: #34d399; }
.lpcr_conf--medium { color: #fbbf24; }
.lpcr_conf--low { color: var(--lpcr-muted); }

/* ------------------------------------------------- Réserves de la prévision */

/* Volontairement discrète : c'est une précision de méthode, pas un conseil.
   Elle doit être lisible sans concurrencer la prévision elle-même. */
.lpcr_note {
    margin: 14px 0 0;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--lpcr-muted);
}

/* ---------------------------------------------------------------- Conseil */

.lpcr_advice {
    margin: 18px 0 0;
    padding: 12px 14px;
    border-left: 3px solid var(--lpcr-level);
    border-radius: 0 10px 10px 0;
    background: rgba(255, 255, 255, 0.04);
    font-size: 14px;
    line-height: 1.5;
}

/* --------------------------------------------------------------- Facteurs */

.lpcr_factors {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
}

.lpcr_factor {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid var(--lpcr-border);
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 12px;
}

.lpcr_factor_label {
    font-weight: 700;
}

.lpcr_factor_detail {
    color: var(--lpcr-muted);
}

.lpcr_factor_impact {
    font-weight: 700;
}

.lpcr_factor--up .lpcr_factor_impact { color: #f87171; }
.lpcr_factor--down .lpcr_factor_impact { color: #34d399; }

/* ----------------------------------------------------------- Courbe horaire */

.lpcr_curve {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--lpcr-border);
}

.lpcr_curve_head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.lpcr_curve_title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.lpcr_curve_src {
    font-size: 11px;
    color: var(--lpcr-muted);
}

.lpcr_bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 110px;
}

.lpcr_bar {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    height: 100%;
    min-width: 0;
}

.lpcr_bar_fill {
    display: block;
    width: 100%;
    height: max(4px, var(--v, 0%));
    border-radius: 5px 5px 2px 2px;
    background: var(--lpcr-level);
}

@supports (background: color-mix(in srgb, red 10%, transparent)) {
    .lpcr_bar_fill {
        background: linear-gradient(to top, color-mix(in srgb, var(--lpcr-level) 35%, transparent), var(--lpcr-level));
    }
}

.lpcr_bar_h {
    font-size: 10px;
    color: var(--lpcr-muted);
    white-space: nowrap;
}

/* ------------------------------------------------------------------ Live */

.lpcr_live {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--lpcr-border);
}

.lpcr_live_title {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--rouge, #e12523);
    margin-bottom: 10px;
}

.lpcr_live_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: lpcr_pulse 1.8s ease-in-out infinite;
}

@keyframes lpcr_pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.8); }
}

.lpcr_live_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.lpcr_live_list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    padding: 7px 0;
    border-bottom: 1px dashed var(--lpcr-border);
}

.lpcr_live_wait {
    font-weight: 700;
    white-space: nowrap;
}

/* --------------------------------------------------------------- Crédits */

.lpcr_credits {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 14px;
    margin-top: 14px;
    font-size: 11px;
    color: var(--lpcr-muted);
}

.lpcr_credits a {
    color: var(--lpcr-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lpcr_credits a:hover {
    color: var(--lpcr-text);
}

.lpcr_error {
    margin: 0;
    padding: 24px;
    text-align: center;
    color: var(--lpcr-muted);
}

/* ------------------------------------------------- Sélecteur de parc */

.lpcr_picker {
    --lpcr-bg: rgba(255, 255, 255, 0.03);
    --lpcr-border: rgba(255, 255, 255, 0.08);
    --lpcr-text: #f5f5f7;
    --lpcr-muted: rgba(245, 245, 247, 0.55);
    margin: 48px 0;
    color: var(--lpcr-text);
}

.lpcr_picker *,
.lpcr_picker *::before,
.lpcr_picker *::after {
    box-sizing: border-box;
}

.lpcr_picker_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 24px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.lpcr_picker_title {
    margin: 0;
    font-size: clamp(22px, 3.4vw, 30px);
    line-height: 1.15;
    font-weight: 800;
}

.lpcr_picker_field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: min(380px, 100%);
}

.lpcr_picker_label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lpcr-muted);
}

.lpcr_picker_select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 12px 40px 12px 14px;
    border: 1px solid var(--lpcr-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--lpcr-text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.lpcr_picker_select:hover {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.lpcr_picker_select:focus-visible {
    outline: 2px solid var(--rouge, #e12523);
    outline-offset: 2px;
}

.lpcr_picker_select option {
    background: #1c1f26;
    color: #f5f5f7;
}

.lpcr_picker_chevron {
    position: absolute;
    right: 14px;
    bottom: 15px;
    pointer-events: none;
    color: var(--lpcr-muted);
}

/* Une fois le combobox en place, le select natif garde la valeur mais sort
   du flux visuel. Il reste focusable-hidden plutôt que display:none pour
   demeurer un champ de formulaire valide. */
.lpcr_picker_field.is-enhanced .lpcr_picker_select,
.lpcr_picker_field.is-enhanced .lpcr_picker_chevron {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* ------------------------------------------- Combobox de recherche */

.lpcr_combo {
    position: relative;
}

.lpcr_combo_toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--lpcr-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--lpcr-text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.lpcr_combo_toggle:hover {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.lpcr_combo_toggle:focus-visible {
    outline: 2px solid var(--rouge, #e12523);
    outline-offset: 2px;
}

.lpcr_combo_value {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lpcr_combo_country {
    flex: 0 0 auto;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--lpcr-muted);
}

.lpcr_combo_arrow {
    flex: 0 0 auto;
    color: var(--lpcr-muted);
    transition: transform 0.18s ease;
}

.lpcr_combo.is-open .lpcr_combo_arrow {
    transform: rotate(180deg);
}

.lpcr_combo_panel {
    position: absolute;
    z-index: 30;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: #1c1f26;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.lpcr_combo_panel[hidden] {
    display: none;
}

.lpcr_combo_search_wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.lpcr_combo_search_wrap svg {
    position: absolute;
    left: 11px;
    pointer-events: none;
    color: var(--lpcr-muted);
}

.lpcr_combo_search {
    width: 100%;
    padding: 9px 12px 9px 34px;
    border: 1px solid var(--lpcr-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--lpcr-text);
    font-family: inherit;
    font-size: 14px;
}

.lpcr_combo_search::placeholder {
    color: rgba(245, 245, 247, 0.4);
}

.lpcr_combo_search:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.07);
}

.lpcr_combo_list {
    max-height: 264px;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    list-style: none;
    overscroll-behavior: contain;
}

.lpcr_combo_list[hidden] {
    display: none;
}

.lpcr_combo_option {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 11px;
    border-radius: 9px;
    cursor: pointer;
}

.lpcr_combo_option[hidden] {
    display: none;
}

.lpcr_combo_option.is-active {
    background: rgba(255, 255, 255, 0.09);
}

.lpcr_combo_option.is-selected .lpcr_combo_name {
    color: var(--lpcr-accent, #fbbf24);
}

.lpcr_combo_name {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--lpcr-text);
}

.lpcr_combo_meta {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--lpcr-muted);
    white-space: nowrap;
}

.lpcr_combo_empty {
    margin: 0;
    padding: 18px 12px;
    text-align: center;
    font-size: 13.5px;
    color: var(--lpcr-muted);
}

.lpcr_combo_empty[hidden] {
    display: none;
}

.lpcr_picker_slot {
    transition: opacity 0.15s ease;
}

.lpcr_picker_slot.is-loading {
    opacity: 0.45;
    pointer-events: none;
}

/* Le widget porte déjà ses propres marges : on évite le doublon dans le bloc. */
.lpcr_picker_slot .lpcr {
    margin-top: 16px;
}

@media (max-width: 640px) {
    .lpcr_picker_head {
        align-items: stretch;
    }

    .lpcr_picker_field {
        min-width: 100%;
    }
}

/* ------------------------------------------------------------- Responsive */

@media (max-width: 640px) {
    .lpcr_card {
        padding: 16px;
    }

    .lpcr_card_main {
        gap: 12px;
    }

    .lpcr_bigicon svg {
        width: 48px;
        height: 48px;
    }

    .lpcr_bars {
        height: 88px;
    }

    .lpcr_bar_h {
        font-size: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lpcr_day,
    .lpcr_live_dot {
        transition: none;
        animation: none;
    }
}
