/* Checklist Page Styles - Scoped to #page-content */

#page-content {
    --accent: #32a930;
    --dark: #1b1f23;
    --muted: #6a6f76;
    --line: #e5e9ee;
    --bg: #ffffff;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 10px 28px rgba(0, 0, 0, .10);
    --shadow-soft: 0 6px 18px rgba(0, 0, 0, .08);
    --ring: 0 0 0 3px rgba(169, 165, 48, 0.18);
}

#page-content a {
    color: var(--accent);
    text-underline-offset: 2px;
}

#page-content a:hover {
    opacity: .9;
}

#page-content :focus-visible {
    outline: none !important;
    box-shadow: var(--ring);
    border-radius: var(--radius-sm);
}

#page-content #checklist :is(*) {
    box-sizing: border-box;
}

#page-content #checklist {
    --accent: #32a930;
    --bg: #f7f8fa;
    --card: #ffffff;
    --text: #182029;
    --muted: #6f7a85;
    --line: #e5e9ef;
    --soft: #eef2f6;
}

#page-content #checklist .wrap {
    max-width: 960px;
    margin: auto;
    padding: 0 18px;
}

#page-content #checklist .hero {
    border: 0px solid var(--line);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 2px 8px rgba(52, 52, 52, 0.034);
}

#page-content #checklist h1 {
    font-size: clamp(20px, 2.2vw, 25px);
    margin: 35px 0 33px;
    font-weight: 600;
    text-align: center;
}

#page-content #checklist .hero h2 {
    font-size: clamp(20px, 2.2vw, 24px);
    margin: 0 0 17px;
    font-weight: 500;
}

#page-content #checklist .hero p {
    margin: 0;
    color: var(--muted);
    line-height: 1.4;
}

#page-content #checklist .seo {
    background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 18px;
    margin-top: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

#page-content #checklist .trip {
    margin: 14px 0 18px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

#page-content #checklist .trip label {
    min-width: max-content;
}

#page-content #checklist .trip input {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .2px;
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    outline: none;
    transition: box-shadow .2s, border-color .2s, background .2s;
}

#page-content #checklist .trip input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(50, 169, 48, .18);
}

/* Tabs & Panels */
#page-content #checklist .tabs {
    margin: 18px 0 15px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}

#page-content #checklist .tablist {
    display: flex;
    gap: 8px;
    padding: 10px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

#page-content #checklist .tabbtn {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f4f7f9;
    cursor: pointer;
    font-size: 14px;
    transition: border-color .2s, box-shadow .2s, transform .12s ease-out;
}

#page-content #checklist .tabbtn:hover {
    transform: translateY(-1px);
}

#page-content #checklist .tabbtn[aria-selected="true"] {
    border-color: var(--accent);
    outline: 2px solid rgba(50, 169, 48, .18);
    background: #f3fbf3;
}

#page-content #checklist .panel {
    display: none;
    padding: 14px 16px 6px;
}

#page-content #checklist .panel.active {
    display: block;
}

/* Items */
#page-content #checklist .list {
    display: grid;
    gap: 10px;
    margin: 10px 0 10px;
}

#page-content #checklist .item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 12px;
    flex-wrap: nowrap;
    transition: background .15s ease, box-shadow .2s ease;
}

#page-content #checklist .item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
    flex: 0 0 auto;
}

#page-content #checklist .item .labeltext {
    cursor: pointer;
    user-select: none;
    flex: 1 1 auto;
    min-width: 0;
    word-break: break-word;
}

#page-content #checklist .item:hover {
    background: var(--soft);
}

#page-content #checklist .item.checked .labeltext {
    opacity: .85;
}

#page-content #checklist .item.crossed .labeltext {
    opacity: .75;
    text-decoration: line-through;
}

#page-content #checklist .item .ref {
    margin-left: 6px;
    margin-top: 2px;
    font-size: .92em;
    text-decoration: underline;
    color: #94631b;
}

#page-content #checklist .item .ref:hover {
    opacity: .9;
}

/* Add row */
#page-content #checklist .addrow {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 8px 0 14px;
}

#page-content #checklist .addinput {
    flex: 1;
    min-width: 240px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    outline: none;
    transition: box-shadow .2s, border-color .2s;
}

#page-content #checklist .addinput:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(50, 169, 48, .18);
}

#page-content #checklist .addbtn {
    border: 1px solid var(--line);
    background: #f3fbf3;
    border-radius: 999px;
    padding: 9px 14px;
    cursor: pointer;
    font-size: 14px;
    transition: border-color .2s, background .2s, transform .12s ease-out, box-shadow .2s;
}

#page-content #checklist .addbtn:hover {
    border-color: #d6dbe2;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .06);
}

#page-content #checklist .addhint {
    font-size: 12px;
    color: var(--muted);
}

#page-content #checklist .addhint.error {
    color: #b91c1c;
}

/* Notes */
#page-content #checklist .notes {
    font-size: 16px;
    width: 100%;
    min-height: 110px;
    margin: 13px 0 0;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    outline: none;
    resize: vertical;
    transition: box-shadow .2s, border-color .2s, background .2s;
}

#page-content #checklist .notes:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(50, 169, 48, .18);
}

#page-content #checklist .small {
    font-size: 14px;
    color: var(--muted);
}

/* Generic widget */
#page-content #checklist .widget {
    background: linear-gradient(180deg, #fbfcff 100%);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0 16px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .08);
    margin: 14px 0;
}

#page-content #checklist .widget h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

#page-content #checklist .widget .muted {
    color: var(--muted);
}

#page-content #checklist .widget input[type="date"] {
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    outline: none;
    transition: box-shadow .2s, border-color .2s;
}

#page-content #checklist .widget input[type="date"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(50, 169, 48, .18);
}

#page-content #checklist .widget .pill {
    height: auto;
    margin: 0;
    padding: 6px 10px;
    border-radius: 99px;
    background: #f3fbf3;
    border: 1px solid var(--line);
}

/* Countdown + Progress */
#page-content #checklist .widget.countdown {
    margin: 18px 0;
    padding: 20px 18px;
    border-radius: 18px;
    border: 2px solid #32a930;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 50%, #dcfce7 100%);
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.063);
    transition: box-shadow .3s ease, transform .2s ease;
}

#page-content #checklist .widget.countdown:hover {
    box-shadow: 0 10px 62px rgba(81, 81, 81, 0.063);
}

#page-content #checklist .countdown-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

#page-content #checklist .cd-left {
    flex: 1 1 260px;
    min-width: 0;
}

#page-content #checklist .cd-left h3 {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 600;
    color: #166534;
}

#page-content #checklist .cd-left .row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 460px;
    margin: 0px 35px;
}

#page-content #checklist .cd-left .row label {
    font-size: 14px;
    color: #166534;
    font-weight: 500;
}

#page-content #checklist .cd-left .row input[type="date"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #86efac;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    transition: all 0.2s;
}

#page-content #checklist .cd-left .row input[type="date"]:focus {
    outline: none;
    border-color: #32a930;
    box-shadow: 0 0 0 3px rgba(50, 169, 48, 0.2);
}

#page-content #checklist .cd-left .pill {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 14px;
    background: #dcfce7;
    color: #166534;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: normal;
    max-width: 100%;
}

#page-content #checklist .cd-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#page-content #checklist .progress {
    width: 160px;
    height: 160px;
    position: relative;
    display: grid;
    place-items: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

#page-content #checklist .progress svg {
    transform: rotate(-90deg);
}

#page-content #checklist .progress .pct {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    pointer-events: none;
}

#page-content #checklist .toolbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 10px;
}

#page-content #checklist .item .provider-pill {
    margin-left: auto;
    padding: 2px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    background-image: linear-gradient(90deg,
            #ffb347 0%,
            #ff88009b 50%,
            #ff990090 100%);
    color: #2b1400;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.18);
    text-decoration: none;
}

#page-content #checklist .item .provider-pill:hover {
    opacity: 0.9;
}

#page-content #checklist .item .provider-stack {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex: 0 0 auto;
    position: relative;
}

#page-content #checklist .item .provider-stack .provider-pill {
    margin-left: 0;
    position: relative;
}

#page-content #checklist .item .provider-stack .provider-pill+.provider-pill {
    margin-left: -8px;
}

#page-content #checklist .item .provider-stack .provider-pill:hover {
    z-index: 5;
}

#page-content .intern-link-button {
    display: block;
    padding: 14px 40px;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border: 2px solid rgba(0, 0, 0, .35);
    border-radius: 40px;
    color: #0b0f17;
    font-weight: 700;
    font-size: 16px;
    background: linear-gradient(180deg, #fff, #f7faf9);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .08);
    margin:  auto;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}

#page-content .intern-link-button:hover {
    transform: translateY(0px);
    border-color: rgba(11, 138, 0, .35);
    box-shadow: 0 10px 22px rgba(11, 138, 0, .12);
}

.cl{margin:6px 0 12px}
.row{display:flex;gap:10px;align-items:flex-start;margin:6px 0}
.box{width:20px;flex:0 0 20px;font-size:16px;line-height:1.2}
.txt{flex:1}


@media (max-width: 1400px) {
    #page-content #checklist .wrap{
        max-width: 850px;
    }}

@media (max-width: 768px) {
    #page-content #checklist .wrap {
        padding: 0 5px;
    }

    #page-content #checklist .widget.countdown {
        padding: 18px 14px;
    }

    #page-content #checklist .countdown-inner {
        flex-direction: column;
        align-items: stretch;
    }

    #page-content #checklist .cd-left {
        flex: 1 1 auto;
    }

    #page-content #checklist .cd-right {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #page-content #checklist .hero,
    #page-content #checklist .seo {
        padding: 14px 1px;
    }
    #page-content #checklist .wrap {
    padding: 0px;
    }

    #page-content #checklist .tabbtn {
        padding: 7px 10px;
    }

    #page-content #checklist .item {
        padding: 9px 10px;
    }

    #page-content #checklist .widget.countdown {
        padding: 12px 12px;
        gap: 16px;
    }

    #page-content #checklist .cd-left h3 {
        font-size: 20px;
    }

    #page-content #checklist .progress {
        width: 160px;
        height: 160px;
    }

    #page-content #checklist .item .provider-stack .provider-pill+.provider-pill {
        margin-left: -6px;
    }
}

@media print {
    #page-content #checklist .hero,
    #page-content #checklist .seo,
    #page-content #checklist .widget,
    #page-content #checklist .tabs {
        box-shadow: none !important;
    }

    #page-content a {
        color: #000;
        text-decoration: none;
    }
}

