/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-i92xf443nf] {
    .page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-i92xf443nf] {
    flex: 1;
}

.content[b-i92xf443nf] {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ?? Top bar ??????????????????????????????????????????? */
.top-bar[b-s6snepqxgo] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1.5rem;
    height: 3.5rem;
    background: #111;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand[b-s6snepqxgo] {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
    text-decoration: none;
    margin-right: auto;
}

.brand:hover[b-s6snepqxgo] {
    color: #ccc;
}

/* Nav links */
.nav-links[b-s6snepqxgo] {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.nav-links[b-s6snepqxgo]  a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}

.nav-links[b-s6snepqxgo]  a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-links[b-s6snepqxgo]  a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

/* Hamburger toggle (mobile) */
.nav-toggle[b-s6snepqxgo] {
    display: none;
}

.nav-toggle-label[b-s6snepqxgo] {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle-label span[b-s6snepqxgo] {
    display: block;
    width: 22px;
    height: 2px;
    background: #aaa;
    border-radius: 2px;
    transition: background 0.15s;
}

.nav-toggle-label:hover span[b-s6snepqxgo] {
    background: #fff;
}

@media (max-width: 640px) {
    .nav-toggle-label[b-s6snepqxgo] {
        display: flex;
    }

    .nav-links[b-s6snepqxgo] {
        display: none;
        position: absolute;
        top: 3.5rem;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: #111;
        padding: 0.5rem 1rem 1rem;
        gap: 0;
    }

    .nav-links[b-s6snepqxgo]  a {
        padding: 0.6rem 0.75rem;
    }

    .nav-toggle:checked ~ .nav-links[b-s6snepqxgo] {
        display: flex;
    }
}
/* /Components/Pages/Geocaching.razor.rz.scp.css */
/* Layout */
.geo-layout[b-49w9pld5pz] {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    min-height: calc(100vh - 3.5rem);
}

/* Sidebar */
.geo-sidebar[b-49w9pld5pz] {
    width: 200px;
    flex-shrink: 0;
    position: sticky;
    top: calc(3.5rem + 2rem);
    border-right: 1px solid #e5e5e5;
    padding-right: 1.5rem;
}

.geo-sidebar-title[b-49w9pld5pz] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #aaa;
    margin: 0 0 0.75rem 0;
}

.geo-nav[b-49w9pld5pz] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.geo-nav-btn[b-49w9pld5pz] {
    display: block;
    width: 100%;
    background: none;
    border: none;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    text-align: left;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: inherit;
    line-height: inherit;
    color: #555;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.geo-nav-btn:hover[b-49w9pld5pz] {
    background: #f0f0f0;
    color: #111;
}

.geo-nav-btn.active[b-49w9pld5pz] {
    background: #f0f0f0;
    color: #111;
    font-weight: 600;
}

/* Content area */
.geo-content[b-49w9pld5pz] {
    flex: 1;
    min-width: 0;
}

/* Mobile */
@media (max-width: 640px) {
    .geo-layout[b-49w9pld5pz] {
        flex-direction: column;
        gap: 1rem;
    }

    .geo-sidebar[b-49w9pld5pz] {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding-right: 0;
        padding-bottom: 1rem;
        position: static;
    }

    .geo-nav[b-49w9pld5pz] {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
    }
}
/* /Components/Pages/GeoNoteSets/AdventureLabs.razor.rz.scp.css */
/* Styles for this note set live in app.css under the shared note-set block */
/* /Components/Pages/GeoNoteSets/WherigoClass.razor.rz.scp.css */
/* Styles for this note set live in app.css under the shared note-set block */
/* /Components/Pages/Home.razor.rz.scp.css */
.resume[b-e1gkxtrom8] {
    max-width: 780px;
    margin: 0 auto;
}

/* Header */
.resume-header[b-e1gkxtrom8] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #111;
}

.resume-identity h1[b-e1gkxtrom8] {
    margin: 0;
    font-size: 2rem;
}

.resume-title[b-e1gkxtrom8] {
    margin: 0.25rem 0 0;
    color: #555;
    font-size: 1rem;
}

.resume-contact[b-e1gkxtrom8] {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.8;
}

.resume-contact a[b-e1gkxtrom8] {
    color: #555;
    text-decoration: none;
}

.resume-contact a:hover[b-e1gkxtrom8] {
    color: #111;
    text-decoration: underline;
}

/* Sections */
.resume-section[b-e1gkxtrom8] {
    margin-bottom: 2rem;
}

.section-heading[b-e1gkxtrom8] {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 0.75rem 0;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #e5e5e5;
}

/* Entries */
.resume-entry[b-e1gkxtrom8] {
    margin-bottom: 1.25rem;
}

.resume-entry-header[b-e1gkxtrom8] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.resume-entry-title[b-e1gkxtrom8] {
    font-weight: 600;
    font-size: 0.975rem;
}

.resume-entry-meta[b-e1gkxtrom8] {
    font-size: 0.8rem;
    color: #777;
}

.resume-entry ul[b-e1gkxtrom8] {
    margin: 0;
    padding-left: 1.25rem;
    color: #333;
    font-size: 0.9rem;
}

.resume-entry ul li[b-e1gkxtrom8] {
    margin-bottom: 0.25rem;
}

.resume-entry-note[b-e1gkxtrom8] {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* Skills */
.resume-skills[b-e1gkxtrom8] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.resume-skills li[b-e1gkxtrom8] {
    background: #f0f0f0;
    border-radius: 4px;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    color: #333;
}

/* Mobile */
@media (max-width: 600px) {
    .resume-header[b-e1gkxtrom8] {
        flex-direction: column;
    }

    .resume-contact[b-e1gkxtrom8] {
        text-align: left;
    }

    .resume-entry-header[b-e1gkxtrom8] {
        flex-direction: column;
    }
}
/* /Components/Pages/Puzzles.razor.rz.scp.css */
/* Layout */
.puzzle-layout[b-udafdxqywr] {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    min-height: calc(100vh - 3.5rem);
}

/* Sidebar */
.puzzle-sidebar[b-udafdxqywr] {
    width: 200px;
    flex-shrink: 0;
    position: sticky;
    top: calc(3.5rem + 2rem);
    border-right: 1px solid #e5e5e5;
    padding-right: 1.5rem;
}

.puzzle-sidebar-title[b-udafdxqywr] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #aaa;
    margin: 0 0 0.75rem 0;
}

.puzzle-nav[b-udafdxqywr] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.puzzle-nav-btn[b-udafdxqywr] {
    display: block;
    width: 100%;
    background: none;
    border: none;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    text-align: left;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: inherit;
    line-height: inherit;
    color: #555;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.puzzle-nav-btn:hover[b-udafdxqywr] {
    background: #f0f0f0;
    color: #111;
}

.puzzle-nav-btn.active[b-udafdxqywr] {
    background: #f0f0f0;
    color: #111;
    font-weight: 600;
}

/* Content area */
.puzzle-content[b-udafdxqywr] {
    flex: 1;
    min-width: 0;
}

/* Mobile */
@media (max-width: 640px) {
    .puzzle-layout[b-udafdxqywr] {
        flex-direction: column;
        gap: 1rem;
    }

    .puzzle-sidebar[b-udafdxqywr] {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding-right: 0;
        padding-bottom: 1rem;
        position: static;
    }

    .puzzle-nav[b-udafdxqywr] {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
    }
}
/* /Components/Pages/PuzzleSets/SuDoKu.razor.rz.scp.css */
.sudoku-solver[b-3oviu3wfzg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sudoku-grid[b-3oviu3wfzg] {
    display: flex;
    flex-direction: column;
    border: 3px solid #333;
    border-radius: 4px;
    overflow: hidden;
    user-select: none;
    background-color: #e8e8e8;
}

.sudoku-row[b-3oviu3wfzg] {
    display: flex;
}

.sudoku-row--block-border[b-3oviu3wfzg] {
    border-bottom: 3px solid #333;
}

.sudoku-cell[b-3oviu3wfzg] {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bbb;
    box-sizing: border-box;
}

.sudoku-cell--block-border[b-3oviu3wfzg] {
    border-right: 3px solid #333;
}

.sudoku-input[b-3oviu3wfzg] {
    width: 100%;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    background: lightgrey;
    outline: none;
    caret-color: transparent;
    cursor: default;
    color: #1a73e8;
}

.sudoku-input--invalid[b-3oviu3wfzg] {
    background: #fdecea;
    color: #c0392b;
}

.sudoku-input:focus[b-3oviu3wfzg] {
    background: antiquewhite;
}

.sudoku-value[b-3oviu3wfzg] {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
}

.sudoku-value.sudoku-cell--given[b-3oviu3wfzg] {
    color: #333;
    font-weight: 700;
}

.sudoku-value:not(.sudoku-cell--given)[b-3oviu3wfzg] {
    color: #1a73e8;
}

.sudoku-actions[b-3oviu3wfzg] {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.sudoku-btn[b-3oviu3wfzg] {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.15s;
}

.sudoku-btn--solve[b-3oviu3wfzg] {
    background: #1a73e8;
    color: #fff;
}

.sudoku-btn--solve:hover[b-3oviu3wfzg] {
    background: #1558b0;
}

.sudoku-btn--reset[b-3oviu3wfzg] {
    background: #e8eaed;
    color: #333;
}

.sudoku-btn--reset:hover[b-3oviu3wfzg] {
    background: #d2d5db;
}

.sudoku-message[b-3oviu3wfzg] {
    font-size: 0.95rem;
    margin: 0;
}

.sudoku-message--error[b-3oviu3wfzg] {
    color: #c0392b;
    font-weight: 600;
}
/* /Components/Pages/PuzzleSets/WordleSolver.razor.rz.scp.css */
.wordle-solutions-row[b-aqja7x3te1] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.wordle-reset[b-aqja7x3te1] {
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 4px;
    background: #e8eaed;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    align-self: flex-start;
    transition: background 0.15s;
}

.wordle-reset:hover[b-aqja7x3te1] {
    background: #d2d5db;
}

.wordle-solutions-box[b-aqja7x3te1] {
    column-count: 4;
    column-gap: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-height: 4rem;
    font-family: monospace;
}

.wordle-solution-word[b-aqja7x3te1] {
    display: block;
    padding: 1px 4px;
    break-inside: avoid;
}
