:root {
    --noe-booking-teal: #035c67;
    --noe-booking-gold: #a78957;
    --noe-booking-gold-dark: #8f7449;
    --noe-booking-text: #173f40;
    --noe-booking-muted: #6f7a78;
    --noe-booking-border: #d9e2df;
    --noe-booking-soft: #f2ece2;
    --noe-booking-white: #fbfaf7;
}

.noe-v2,
.noe-v2 * {
    box-sizing: border-box;
}

.noe-v2 {
    position: relative;
    z-index: 50;
    width: min(1220px, calc(100% - 40px));
    margin-inline: auto;
    color: var(--noe-booking-text);
    font-family: inherit;
}

.noe-v2__form {
    margin: 0;
}

.noe-v2__panel {
    display: grid;
    grid-template-columns: minmax(381px, 2fr) 1px minmax(275px, 1.35fr) minmax(190px, auto);
    align-items: stretch;
    min-height: 88px;
    padding: 9px;
    background: var(--noe-booking-white);
    border: 1px solid var(--noe-booking-border);
    border-radius: 10px;
    box-shadow: 0 16px 46px rgba(18, 44, 44, 0.14);
}

.noe-v2__date-group {
    display: grid;
    grid-template-columns: minmax(190px, 1fr) 1px minmax(190px, 1fr);
    align-items: stretch;
    min-width: 0;
}

.noe-v2__field {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 12px 22px;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 7px;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background-color 160ms ease, box-shadow 160ms ease;
}

.noe-v2__field:hover {
    background: var(--noe-booking-soft);
}

.noe-v2__field:focus-visible,
.noe-v2__counter-button:focus-visible,
.noe-v2__done:focus-visible,
.noe-v2__submit:focus-visible {
    outline: 2px solid var(--noe-booking-gold);
    outline-offset: 2px;
}

.noe-v2__icon {
    flex: 0 0 20px;
    color: var(--noe-booking-teal);
}

.noe-v2__icon svg,
.noe-v2__submit svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.noe-v2__copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.noe-v2__label {
    margin-bottom: 5px;
    color: var(--noe-booking-teal);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.noe-v2__value {
    overflow: hidden;
    color: var(--noe-booking-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.noe-v2__meta {
    min-height: 14px;
    margin-top: 3px;
    color: var(--noe-booking-muted);
    font-size: 12px;
    line-height: 1.1;
}

.noe-v2__divider {
    align-self: center;
    width: 1px;
    height: 44px;
    background: var(--noe-booking-border);
}

.noe-v2__guests {
    position: relative;
    min-width: 0;
}

.noe-v2__field--guests {
    height: 100%;
}

.noe-v2__chevron {
    width: 8px;
    height: 8px;
    margin-left: auto;
    border-right: 1.5px solid var(--noe-booking-teal);
    border-bottom: 1.5px solid var(--noe-booking-teal);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 160ms ease;
}

.noe-v2.is-guests-open .noe-v2__chevron {
    transform: rotate(225deg) translate(-1px, -1px);
}

.noe-v2__guest-popover {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    z-index: 100003;
    width: min(360px, calc(100vw - 32px));
    padding: 23px;
    background: var(--noe-booking-white);
    border: 1px solid var(--noe-booking-border);
    border-radius: 10px;
    box-shadow: 0 18px 50px rgba(18, 44, 44, 0.18);
}

.noe-v2__counter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-block: 14px;
    border-bottom: 1px solid var(--noe-booking-border);
}

.noe-v2__counter-row:first-child {
    padding-top: 0;
}

.noe-v2__counter-row > div:first-child {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.noe-v2__counter-row strong {
    color: var(--noe-booking-text);
    font-size: 15px;
    line-height: 1.2;
}

.noe-v2__counter-row span {
    margin-top: 4px;
    color: var(--noe-booking-muted);
    font-size: 12px;
    line-height: 1.25;
}

.noe-v2__counter-control {
    display: grid;
    grid-template-columns: 38px 34px 38px;
    align-items: center;
    flex: 0 0 auto;
}

.noe-v2__counter-button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    color: var(--noe-booking-teal);
    background: var(--noe-booking-white);
    border: 1px solid var(--noe-booking-border);
    border-radius: 50%;
    font: inherit;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.noe-v2__counter-button:hover {
    border-color: var(--noe-booking-gold);
}

.noe-v2__counter-control output {
    color: var(--noe-booking-text);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.noe-v2__room-note {
    margin: 14px 0 0;
    color: var(--noe-booking-muted);
    font-size: 12px;
    line-height: 1.45;
}

.noe-v2__done {
    width: 100%;
    margin-top: 18px;
    padding: 11px 15px;
    color: var(--noe-booking-white);
    background: var(--noe-booking-teal);
    border: 0;
    border-radius: 6px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.noe-v2__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 190px;
    margin: 0;
    padding: 16px 27px;
    color: var(--noe-booking-white);
    background: var(--noe-booking-gold);
    border: 0;
    border-radius: 7px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.15;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 170ms ease, transform 170ms ease, opacity 170ms ease;
}

.noe-v2__submit:hover:not(:disabled) {
    background: var(--noe-booking-gold-dark);
    transform: translateY(-1px);
}

.noe-v2__submit:disabled {
    opacity: 0.58;
    cursor: wait;
}

.noe-v2__submit svg {
    width: 18px;
    height: 18px;
}

.noe-v2__submit.is-loading svg {
    animation: noe-v2-pulse 800ms ease-in-out infinite alternate;
}

.noe-v2__picker {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.noe-v2__status {
    margin: 10px 0 0;
    padding: 9px 12px;
    color: #7e2b2b;
    background: #fff1f1;
    border: 1px solid #efd0d0;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
}

.noe-v2.has-date-error .noe-v2__field--date {
    box-shadow: inset 0 0 0 1px var(--noe-booking-gold);
}

.noe-v2__benefits {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px 13px;
    margin: 12px 0 0;
    color: var(--noe-booking-teal);
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
}

.noe-v2__benefits i {
    width: 3px;
    height: 3px;
    background: var(--noe-booking-gold);
    border-radius: 50%;
}

.flatpickr-calendar.noe-v2-calendar {
    width: min(760px, calc(100vw - 32px)) !important;
    padding: 20px !important;
    background: var(--noe-booking-white) !important;
    border: 1px solid var(--noe-booking-border) !important;
    border-radius: 10px !important;
    box-shadow: 0 20px 60px rgba(18, 44, 44, 0.2) !important;
    font-family: inherit !important;
}

.noe-v2-calendar .flatpickr-months {
    align-items: center;
    margin-bottom: 14px;
}

.noe-v2-calendar .flatpickr-month {
    height: 42px;
}

.noe-v2-calendar .flatpickr-current-month {
    padding-top: 5px;
    color: var(--noe-booking-teal);
    font-size: 16px;
}

.noe-v2-calendar .flatpickr-current-month .flatpickr-monthDropdown-months,
.noe-v2-calendar .flatpickr-current-month input.cur-year {
    color: var(--noe-booking-teal);
    font-size: 16px;
    font-weight: 600;
}

.noe-v2-calendar .flatpickr-prev-month,
.noe-v2-calendar .flatpickr-next-month {
    top: 20px !important;
    color: var(--noe-booking-teal) !important;
    fill: var(--noe-booking-teal) !important;
}

.noe-v2-calendar .flatpickr-rContainer,
.noe-v2-calendar .flatpickr-days {
    width: 100% !important;
}

.noe-v2-calendar .dayContainer,
.noe-v2-calendar .flatpickr-weekdaycontainer {
    width: 50% !important;
    min-width: 50% !important;
    max-width: 50% !important;
}

.noe-v2-calendar span.flatpickr-weekday {
    color: var(--noe-booking-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.noe-v2-calendar .flatpickr-day {
    max-width: none;
    height: 40px;
    color: var(--noe-booking-text);
    border: 0;
    border-radius: 50%;
    line-height: 40px;
}

.noe-v2-calendar .flatpickr-day:hover {
    background: var(--noe-booking-soft);
}

.noe-v2-calendar .flatpickr-day.today {
    border: 1px solid var(--noe-booking-gold);
}

.noe-v2-calendar .flatpickr-day.selected,
.noe-v2-calendar .flatpickr-day.startRange,
.noe-v2-calendar .flatpickr-day.endRange {
    color: var(--noe-booking-white) !important;
    background: var(--noe-booking-gold) !important;
    border-color: var(--noe-booking-gold) !important;
    box-shadow: none !important;
}

.noe-v2-calendar .flatpickr-day.inRange {
    background: rgba(177, 138, 74, 0.15) !important;
    border-color: transparent !important;
    box-shadow: -5px 0 0 rgba(177, 138, 74, 0.15), 5px 0 0 rgba(177, 138, 74, 0.15) !important;
}

.noe-v2-calendar .flatpickr-day.flatpickr-disabled,
.noe-v2-calendar .flatpickr-day.flatpickr-disabled:hover {
    color: #c2c9c7 !important;
    background: transparent !important;
}

@keyframes noe-v2-pulse {
    from { transform: translateX(0); }
    to { transform: translateX(3px); }
}

@media (max-width: 980px) {
    .noe-v2__panel {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .noe-v2__divider--section {
        display: none;
    }

    .noe-v2__guests {
        border-top: 1px solid var(--noe-booking-border);
    }

    .noe-v2__submit {
        min-height: 55px;
        margin-top: 8px;
    }
}

@media (max-width: 768px) {
    .noe-v2 {
        width: min(100% - 24px, 560px);
    }

    .noe-v2__panel {
        grid-template-columns: 1fr;
        padding: 8px;
        min-height: 0;
    }

    .noe-v2__date-group {
        grid-template-columns: 1fr 1px 1fr;
    }

    .noe-v2__field {
        min-height: 68px;
        padding: 10px 12px;
        gap: 9px;
    }

    .noe-v2__field--date .noe-v2__icon {
        display: none;
    }

    .noe-v2__label {
        font-size: 10px;
    }

    .noe-v2__value {
        font-size: 14px;
    }

    .noe-v2__field--guests {
        min-height: 64px;
        padding-inline: 14px;
    }

    .noe-v2__guest-popover {
        position: fixed;
        right: 12px;
        bottom: 12px;
        left: 12px;
        top: auto;
        width: auto;
        max-height: calc(100vh - 24px);
        overflow: auto;
    }

    .noe-v2__benefits {
        padding-inline: 10px;
        font-size: 11px;
    }

    .flatpickr-calendar.noe-v2-calendar {
        position: fixed !important;
        right: 12px !important;
        bottom: 12px !important;
        left: 12px !important;
        top: auto !important;
        width: auto !important;
        max-height: calc(100vh - 24px) !important;
        overflow-y: auto !important;
        transform: none !important;
        padding: 15px !important;
    }

    .noe-v2-calendar .dayContainer,
    .noe-v2-calendar .flatpickr-weekdaycontainer {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 440px) {
    .noe-v2__date-group {
        grid-template-columns: 1fr;
    }

    .noe-v2__date-group .noe-v2__divider {
        display: none;
    }

    .noe-v2__date-group .noe-v2__field--date + .noe-v2__divider + .noe-v2__field--date {
        border-top: 1px solid var(--noe-booking-border);
    }
}

@media (prefers-reduced-motion: reduce) {
    .noe-v2 *,
    .noe-v2 *::before,
    .noe-v2 *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================\n   v0.2.0 refinement layer\n   ========================================================================== */

.noe-v2 {
    --noe-booking-radius: 14px;
}

.noe-v2__panel {
    max-width: 1240px;
    border-radius: var(--noe-booking-radius);
    box-shadow: 0 18px 45px rgba(18, 44, 44, 0.13);
}

.noe-v2__divider {
    background: rgba(48, 79, 75, 0.16);
}

.noe-v2__icon {
    transform: translateY(-2px);
}

.noe-v2__guest-popover {
    width: min(420px, calc(100vw - 32px));
    border-radius: 14px;
}

.noe-v2__counter-button {
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.noe-v2__counter-button:hover,
.noe-v2__counter-button:focus-visible {
    background: var(--noe-booking-soft);
    border-color: var(--noe-booking-gold);
    transform: translateY(-1px);
}

.noe-v2__done {
    border-radius: 9px;
    transition: background-color 160ms ease, transform 160ms ease;
}

.noe-v2__done:hover,
.noe-v2__done:focus-visible {
    background: var(--noe-booking-gold);
    transform: translateY(-1px);
}

.noe-v2__submit {
    min-height: 60px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(177, 138, 74, 0.2);
}

.flatpickr-calendar.noe-v2-calendar {
    border-radius: 14px !important;
}

.noe-v2-calendar .flatpickr-prev-month,
.noe-v2-calendar .flatpickr-next-month {
    display: grid !important;
    place-items: center;
    width: 44px !important;
    height: 44px !important;
    padding: 12px !important;
}

.noe-v2-calendar .flatpickr-day.today:not(.selected):not(.startRange):not(.endRange) {
    color: var(--noe-booking-text) !important;
    border-color: rgba(177, 138, 74, 0.45) !important;
}

/* Make a selected stay read as one continuous range. */
.noe-v2-calendar .flatpickr-day.inRange,
.noe-v2-calendar .flatpickr-day.inRange:hover,
.noe-v2-calendar .flatpickr-day.inRange:focus {
    background: rgba(177, 138, 74, 0.16) !important;
    border-radius: 0 !important;
    box-shadow: -6px 0 0 rgba(177, 138, 74, 0.16), 6px 0 0 rgba(177, 138, 74, 0.16) !important;
}

.noe-v2-calendar .flatpickr-day.startRange,
.noe-v2-calendar .flatpickr-day.startRange:hover,
.noe-v2-calendar .flatpickr-day.startRange:focus {
    border-radius: 50% 0 0 50% !important;
    box-shadow: 6px 0 0 rgba(177, 138, 74, 0.16) !important;
}

.noe-v2-calendar .flatpickr-day.endRange,
.noe-v2-calendar .flatpickr-day.endRange:hover,
.noe-v2-calendar .flatpickr-day.endRange:focus {
    border-radius: 0 50% 50% 0 !important;
    box-shadow: -6px 0 0 rgba(177, 138, 74, 0.16) !important;
}

.noe-v2-calendar .flatpickr-day.startRange.endRange {
    border-radius: 50% !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .noe-v2__panel {
        padding: 7px;
    }

    .noe-v2__field {
        min-height: 62px;
        padding-block: 8px;
    }

    .noe-v2__field--guests {
        min-height: 58px;
    }

    .noe-v2__submit {
        min-height: 52px;
        margin-top: 6px;
    }

    .flatpickr-calendar.noe-v2-calendar {
        max-width: 430px !important;
        margin-inline: auto !important;
    }

    .noe-v2-calendar .flatpickr-day {
        height: 44px;
        line-height: 44px;
    }
}


/* ==========================================================================\n   v0.2.2 unified interaction system\n   ========================================================================== */

.noe-v2 {
    --noe-control-radius: 9px;
    --noe-control-size: 40px;
    --noe-focus-ring: rgba(167, 137, 87, 0.55);
    --noe-range-surface: #f2ece2;
}

/* Keep all three visible booking controls on the same vertical rhythm. */
.noe-v2__date-group,
.noe-v2__guests {
    min-height: 70px;
}

.noe-v2__field,
.noe-v2__field--guests {
    height: 100%;
    min-height: 70px;
    border-radius: var(--noe-control-radius);
}

/* Accessible focus treatment without the browser's oversized dotted outline. */
.noe-v2__field:focus,
.noe-v2__field:focus-visible,
.noe-v2__counter-button:focus,
.noe-v2__counter-button:focus-visible,
.noe-v2__done:focus,
.noe-v2__done:focus-visible,
.noe-v2__submit:focus,
.noe-v2__submit:focus-visible {
    outline: none !important;
}

.noe-v2__field:focus-visible {
    background: rgba(242, 236, 226, 0.55);
    box-shadow: inset 0 0 0 2px var(--noe-focus-ring) !important;
}

.noe-v2__counter-button:focus-visible,
.noe-v2__done:focus-visible,
.noe-v2__submit:focus-visible {
    box-shadow: 0 0 0 3px var(--noe-focus-ring) !important;
}

/* Guest controls use the same soft-square language as calendar dates. */
.noe-v2__counter-control {
    grid-template-columns: var(--noe-control-size) 36px var(--noe-control-size);
}

.noe-v2__counter-button {
    width: var(--noe-control-size);
    height: var(--noe-control-size);
    color: var(--noe-booking-teal);
    background: var(--noe-booking-white);
    border-color: rgba(3, 92, 103, 0.18);
    border-radius: var(--noe-control-radius);
    box-shadow: none;
}

.noe-v2__counter-button:hover {
    color: var(--noe-booking-white);
    background: var(--noe-booking-gold);
    border-color: var(--noe-booking-gold);
}

.noe-v2__counter-button:disabled {
    color: rgba(3, 92, 103, 0.32);
    background: #f5f3ee;
    border-color: transparent;
    cursor: not-allowed;
    transform: none;
}

/*
 * Flatpickr days are separated with transparent borders rather than margins.
 * This preserves Flatpickr's grid calculations while producing clean,
 * non-overlapping rounded squares at every responsive width.
 */
.noe-v2-calendar .flatpickr-day,
.noe-v2-calendar .flatpickr-day:hover,
.noe-v2-calendar .flatpickr-day:focus {
    border: 2px solid transparent !important;
    border-radius: var(--noe-control-radius) !important;
    background-clip: padding-box !important;
    box-shadow: none !important;
}

.noe-v2-calendar .flatpickr-day:not(.flatpickr-disabled):not(.selected):not(.startRange):not(.endRange):not(.inRange):hover {
    color: var(--noe-booking-teal) !important;
    background: var(--noe-range-surface) !important;
    background-clip: padding-box !important;
}

.noe-v2-calendar .flatpickr-day.inRange,
.noe-v2-calendar .flatpickr-day.inRange:hover,
.noe-v2-calendar .flatpickr-day.inRange:focus {
    color: var(--noe-booking-teal) !important;
    background: var(--noe-range-surface) !important;
    border-color: transparent !important;
    border-radius: var(--noe-control-radius) !important;
    background-clip: padding-box !important;
    box-shadow: none !important;
}

.noe-v2-calendar .flatpickr-day.selected,
.noe-v2-calendar .flatpickr-day.startRange,
.noe-v2-calendar .flatpickr-day.endRange,
.noe-v2-calendar .flatpickr-day.selected:hover,
.noe-v2-calendar .flatpickr-day.startRange:hover,
.noe-v2-calendar .flatpickr-day.endRange:hover,
.noe-v2-calendar .flatpickr-day.selected:focus,
.noe-v2-calendar .flatpickr-day.startRange:focus,
.noe-v2-calendar .flatpickr-day.endRange:focus {
    color: var(--noe-booking-white) !important;
    background: var(--noe-booking-gold) !important;
    border-color: transparent !important;
    border-radius: var(--noe-control-radius) !important;
    background-clip: padding-box !important;
    box-shadow: none !important;
}

.noe-v2-calendar .flatpickr-day.startRange.endRange {
    border-radius: var(--noe-control-radius) !important;
}

.noe-v2-calendar .flatpickr-day.today:not(.selected):not(.startRange):not(.endRange) {
    color: var(--noe-booking-teal) !important;
    background: transparent !important;
    border: 2px solid rgba(167, 137, 87, 0.55) !important;
    border-radius: var(--noe-control-radius) !important;
}

@media (max-width: 768px) {
    .noe-v2__date-group,
    .noe-v2__guests {
        min-height: auto;
    }

    .noe-v2__field,
    .noe-v2__field--guests {
        height: auto;
        min-height: 62px;
    }
}

/* ==========================================================================\n   v0.2.3 final UI alignment and range visibility\n   ========================================================================== */

/* Keep both date fields structurally identical before and after selection. */
.noe-v2__field--date .noe-v2__copy {
    display: grid;
    grid-template-rows: 11px minmax(20px, auto) 14px;
    align-content: center;
    row-gap: 4px;
}

.noe-v2__field--date .noe-v2__label,
.noe-v2__field--date .noe-v2__meta {
    margin: 0;
}

.noe-v2__meta--placeholder {
    visibility: hidden;
}

/* Keep the CTA label and arrow on one true visual centre line. */
.noe-v2__submit > span {
    display: flex;
    align-items: center;
    line-height: 1;
}

.noe-v2__submit svg {
    flex: 0 0 18px;
}

/* Flatpickr is appended to body, so explicitly normalize its box model. */
.noe-v2-calendar,
.noe-v2-calendar * {
    box-sizing: border-box;
}

/* Centre every date number inside a consistent square cell. */
.noe-v2-calendar .flatpickr-day,
.noe-v2-calendar .flatpickr-day:hover,
.noe-v2-calendar .flatpickr-day:focus {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 40px !important;
    padding: 0 !important;
    line-height: 1 !important;
    text-align: center !important;
}

/* Make all nights between arrival and departure unmistakably selected. */
.noe-v2-calendar .flatpickr-day.inRange,
.noe-v2-calendar .flatpickr-day.inRange:hover,
.noe-v2-calendar .flatpickr-day.inRange:focus {
    color: var(--noe-booking-teal) !important;
    background: #e8dfd1 !important;
    border-color: transparent !important;
    background-clip: padding-box !important;
}

/* Endpoints remain the strongest visual anchors. */
.noe-v2-calendar .flatpickr-day.selected,
.noe-v2-calendar .flatpickr-day.startRange,
.noe-v2-calendar .flatpickr-day.endRange,
.noe-v2-calendar .flatpickr-day.selected:hover,
.noe-v2-calendar .flatpickr-day.startRange:hover,
.noe-v2-calendar .flatpickr-day.endRange:hover,
.noe-v2-calendar .flatpickr-day.selected:focus,
.noe-v2-calendar .flatpickr-day.startRange:focus,
.noe-v2-calendar .flatpickr-day.endRange:focus {
    color: var(--noe-booking-white) !important;
    background: var(--noe-booking-gold) !important;
}

/* The arrow belongs to Flatpickr's old anchor geometry and is not used. */
.flatpickr-calendar.noe-v2-calendar::before,
.flatpickr-calendar.noe-v2-calendar::after {
    display: none !important;
}

@media (max-width: 768px) {
    .noe-v2__field--date .noe-v2__copy {
        grid-template-rows: 10px minmax(18px, auto) 13px;
        row-gap: 3px;
    }

    .noe-v2-calendar .flatpickr-day,
    .noe-v2-calendar .flatpickr-day:hover,
    .noe-v2-calendar .flatpickr-day:focus {
        height: 44px !important;
    }
}
