/* /Components/Mobile/BlackBerryPhone.razor.rz.scp.css */
/* ── BlackBerry OS style mobile UI ── */
.bb-device[b-w08s1czaya] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    background: #000;
    color: #e9eef5;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* ── Status bar ── */
.bb-statusbar[b-w08s1czaya] {
    flex: 0 0 auto;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    font-size: 11px;
    font-weight: 600;
    color: #cfd6df;
    background: linear-gradient(#3a3f47, #1c1f24);
    border-bottom: 1px solid #000;
    text-shadow: 0 -1px 0 rgba(0,0,0,.6);
}

.bb-carrier[b-w08s1czaya] { display: flex; align-items: center; gap: 6px; letter-spacing: .3px; }

.bb-signal[b-w08s1czaya] { display: inline-flex; align-items: flex-end; gap: 1px; height: 11px; }
.bb-signal i[b-w08s1czaya] { width: 2px; background: #8fa0b3; display: inline-block; }
.bb-signal .b1[b-w08s1czaya] { height: 3px; }
.bb-signal .b2[b-w08s1czaya] { height: 5px; }
.bb-signal .b3[b-w08s1czaya] { height: 7px; }
.bb-signal .b4[b-w08s1czaya] { height: 9px; }
.bb-signal .b5[b-w08s1czaya] { height: 11px; background: #4a5563; }

.bb-status-right[b-w08s1czaya] { display: flex; align-items: center; gap: 8px; }
.bb-net[b-w08s1czaya] { font-size: 10px; color: #9fb0c2; }
.bb-clock[b-w08s1czaya] { color: #fff; }

.bb-battery[b-w08s1czaya] {
    position: relative;
    width: 22px; height: 11px;
    border: 1px solid #9fb0c2;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    padding: 1px;
}
.bb-batt-fill[b-w08s1czaya] { width: 80%; height: 100%; background: #8fe08f; border-radius: 1px; }
.bb-batt-cap[b-w08s1czaya] {
    position: absolute;
    right: -3px; top: 3px;
    width: 2px; height: 5px;
    background: #9fb0c2;
    border-radius: 0 1px 1px 0;
}

/* ── Home screen ── */
.bb-home[b-w08s1czaya] {
    flex: 1;
    overflow-y: auto;
    background-color: #070b16;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.bb-banner[b-w08s1czaya] {
    padding: 16px 18px 10px;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0,0,0,.8);
}
.bb-date[b-w08s1czaya] { font-size: 12px; color: #b9c6db; letter-spacing: .5px; }

.bb-grid[b-w08s1czaya] {
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 6px;
    padding: 16px 12px calc(16px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(transparent, rgba(0,0,0,.55));
}

.bb-app-icon[b-w08s1czaya] {
    appearance: none;
    border: 0;
    background: transparent;
    color: #eef3fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 2px;
}
.bb-app-icon:active[b-w08s1czaya] { transform: scale(.92); }

.bb-icon-tile[b-w08s1czaya] {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: inset 0 1px 1px rgba(255,255,255,.5), inset 0 -3px 6px rgba(0,0,0,.35), 0 2px 4px rgba(0,0,0,.5);
    position: relative;
    overflow: hidden;
}
.bb-icon-tile svg[b-w08s1czaya] { width: 26px; height: 26px; }
.bb-icon-tile[b-w08s1czaya]::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,0));
    border-radius: 12px 12px 40% 40%;
}
.tile-blue[b-w08s1czaya]   { background: linear-gradient(#5aa0f0, #1f5bb8); }
.tile-orange[b-w08s1czaya] { background: linear-gradient(#ffb24d, #d9711a); }
.tile-green[b-w08s1czaya]  { background: linear-gradient(#7ed957, #2f9e2f); }

.bb-icon-label[b-w08s1czaya] {
    font-size: 11px;
    color: #e7eefb;
    text-shadow: 0 1px 2px rgba(0,0,0,.9);
    max-width: 70px;
    text-align: center;
}

/* ── App view ── */
.bb-app[b-w08s1czaya] {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(#11161f, #0a0d14);
    overflow: hidden;
}

.bb-app-header[b-w08s1czaya] {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 8px;
    background: linear-gradient(#3a4452, #232a34);
    border-bottom: 1px solid #000;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.bb-back-chip[b-w08s1czaya] {
    appearance: none;
    border: 1px solid #5a6675;
    background: linear-gradient(#566276, #333c49);
    color: #fff;
    width: 30px; height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}
.bb-back-chip svg[b-w08s1czaya] { width: 18px; height: 18px; }
.bb-back-chip:active[b-w08s1czaya] { background: #2a313b; }
.bb-app-title[b-w08s1czaya] { font-size: 15px; font-weight: 600; color: #fff; }

.bb-app-content[b-w08s1czaya] {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 14px calc(16px + env(safe-area-inset-bottom, 0px));
    user-select: text;
}

.bb-section[b-w08s1czaya] { margin-bottom: 16px; }
.bb-name[b-w08s1czaya] { font-size: 22px; font-weight: 700; margin: 0; color: #fff; }
.bb-tagline[b-w08s1czaya] { margin: 2px 0 0; color: #6fb6ff; font-size: 14px; }
.bb-meta[b-w08s1czaya] { margin: 2px 0 0; color: #93a2b8; font-size: 12px; }

.bb-h3[b-w08s1czaya] {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6fb6ff;
    margin: 0 0 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid #232c39;
}
.bb-body[b-w08s1czaya] { margin: 0 0 8px; line-height: 1.45; color: #d4dce8; font-size: 13px; }

.bb-job[b-w08s1czaya] { margin-bottom: 14px; }
.bb-job-company[b-w08s1czaya] { font-weight: 700; color: #fff; font-size: 14px; }
.bb-role-title[b-w08s1czaya] { color: #cdd7e6; font-size: 13px; margin-top: 4px; }
.bb-role-dates[b-w08s1czaya] { color: #8492a6; font-size: 11px; }
.bb-bullets[b-w08s1czaya] { margin: 4px 0 8px; padding-left: 18px; }
.bb-bullets li[b-w08s1czaya] { font-size: 12.5px; line-height: 1.4; color: #c4cedd; margin-bottom: 4px; }

.bb-skill-heading[b-w08s1czaya] { font-weight: 600; color: #9fb6d6; margin: 8px 0 4px; font-size: 12px; }
.bb-skill-row[b-w08s1czaya] { display: flex; flex-direction: column; padding: 5px 0; border-bottom: 1px solid #1a212c; }
.bb-skill-label[b-w08s1czaya] { color: #fff; font-size: 13px; }
.bb-skill-detail[b-w08s1czaya] { color: #93a2b8; font-size: 12px; }

.bb-edu[b-w08s1czaya] { color: #d4dce8; font-size: 13px; padding: 4px 0; }

/* lists / projects */
.bb-list-item[b-w08s1czaya] {
    background: rgba(255,255,255,.03);
    border: 1px solid #1d2530;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}
.bb-list-title[b-w08s1czaya] { font-weight: 700; color: #fff; font-size: 15px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bb-badge[b-w08s1czaya] {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #0a2a0a;
    background: #7ed957;
    padding: 2px 6px;
    border-radius: 10px;
}
.bb-chips[b-w08s1czaya] { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.bb-chip[b-w08s1czaya] {
    font-size: 11px;
    color: #cfe0f5;
    background: #1c2734;
    border: 1px solid #2c3a4c;
    border-radius: 12px;
    padding: 3px 9px;
}
.bb-link[b-w08s1czaya] { display: inline-block; margin-top: 10px; color: #6fb6ff; font-size: 13px; text-decoration: none; }

.bb-contact-list[b-w08s1czaya] { border-top: 1px solid #1a212c; }
.bb-contact-row[b-w08s1czaya] {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 12px 4px;
    border-bottom: 1px solid #1a212c;
    text-decoration: none;
    color: inherit;
}
.bb-contact-row:active[b-w08s1czaya] { background: rgba(255,255,255,.05); }
.bb-contact-key[b-w08s1czaya] { width: 70px; flex: 0 0 auto; color: #8492a6; font-size: 12px; }
.bb-contact-val[b-w08s1czaya] { color: #6fb6ff; font-size: 13px; word-break: break-word; }
div.bb-contact-row .bb-contact-val[b-w08s1czaya] { color: #d4dce8; }

.bb-empty[b-w08s1czaya] { color: #8492a6; text-align: center; margin-top: 40px; }

/* /Components/Win95/Win95Desktop.razor.rz.scp.css */
.win95-overlay[b-eos2y597cy] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    box-sizing: border-box;
}

/* ── Desktop ── */
.win95-desktop[b-eos2y597cy] {
    flex: 1;
    background-color: #008080;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* ── Desktop Icons ── */
.desktop-icons[b-eos2y597cy] {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.desktop-icon[b-eos2y597cy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 64px;
    cursor: pointer;
    user-select: none;
}

.desktop-icon:hover .icon-img[b-eos2y597cy] {
    background-color: rgba(0, 0, 128, 0.5);
}

.icon-img[b-eos2y597cy] {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
}

.icon-label[b-eos2y597cy] {
    color: white;
    text-shadow: 1px 1px 2px #000;
    font-size: 11px;
    text-align: center;
    word-break: break-all;
}

/* ── Window Panels ── */
.win95-window[b-eos2y597cy] {
    position: absolute;
    border: 2px solid #ffffff;
    outline: 1px solid #000000;
    box-shadow: 2px 2px 0 #000000;
    background-color: #c0c0c0;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.win95-titlebar[b-eos2y597cy] {
    background: linear-gradient(to right, #000080, #1084d0);
    color: white;
    padding: 3px 4px;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between;
    cursor: move;
    user-select: none;
    font-weight: bold;
    font-size: 11px;
    min-height: 20px;
    box-sizing: border-box;
}

.win95-title[b-eos2y597cy] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 6px;
}

.win95-controls[b-eos2y597cy] {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 2px;
    flex-shrink: 0;
}

.win95-btn[b-eos2y597cy] {
    width: 16px;
    height: 14px;
    background-color: #c0c0c0;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #808080;
    border-bottom: 1px solid #808080;
    color: #000000;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.win95-btn:disabled[b-eos2y597cy] {
    color: #808080;
    cursor: default;
}

.win95-body[b-eos2y597cy] {
    background-color: #c0c0c0;
    padding: 8px;
    flex: 1;
    min-height: 0;
    overflow: auto;
    box-sizing: border-box;
}

/* ── Video Window ── */
.video-window[b-eos2y597cy] {
    /* Centered without transform so JS drag works cleanly */
    left: calc(50% - 280px);
    top: calc(50% - 170px);
    width: 560px;
    min-width: 300px;
    min-height: 180px;
}

.video-body[b-eos2y597cy] {
    padding: 0;
    flex: 1;
    min-height: 0;
    background: #000;
    overflow: hidden;
}

.video-controls[b-eos2y597cy] {
    background-color: #c0c0c0;
    border-top: 1px solid #808080;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 4px 8px;
    flex: 0 0 auto;
}

.video-ctrl-btn[b-eos2y597cy] {
    background-color: #c0c0c0;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #808080;
    border-bottom: 1px solid #808080;
    min-width: 32px;
    height: 22px;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    font-family: 'Arial', sans-serif;
}

.video-ctrl-btn:hover:not(:disabled)[b-eos2y597cy] {
    background-color: #d4d4d4;
}

.video-ctrl-btn:active:not(:disabled)[b-eos2y597cy] {
    border-top: 1px solid #808080;
    border-left: 1px solid #808080;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.video-ctrl-btn:disabled[b-eos2y597cy] {
    color: #808080;
    cursor: default;
}

.video-track-label[b-eos2y597cy] {
    font-size: 10px;
    font-family: 'Courier New', monospace;
    color: #000000;
    padding: 0 4px;
    min-width: 40px;
    text-align: center;
}

.video-vol-icon[b-eos2y597cy] {
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}

.video-volume-slider[b-eos2y597cy] {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 20px;
    background: transparent;
    cursor: pointer;
    vertical-align: middle;
    outline: none;
    padding: 0;
}

.video-volume-slider[b-eos2y597cy]::-webkit-slider-runnable-track {
    height: 3px;
    background: #808080;
    border-top: 1px solid #404040;
    border-left: 1px solid #404040;
    border-bottom: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
}

.video-volume-slider[b-eos2y597cy]::-moz-range-track {
    height: 3px;
    background: #808080;
    border-top: 1px solid #404040;
    border-left: 1px solid #404040;
    border-bottom: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
}

.video-volume-slider[b-eos2y597cy]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 11px;
    height: 20px;
    margin-top: -9px;
    background: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    cursor: pointer;
}

.video-volume-slider[b-eos2y597cy]::-moz-range-thumb {
    width: 11px;
    height: 20px;
    background: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    border-radius: 0;
    cursor: pointer;
}

/* ── CMD Window ── */
.cmd-window[b-eos2y597cy] {
    width: 480px;
    left: 120px;
    top: 140px;
    max-height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
}

.cmd-body[b-eos2y597cy] {
    background-color: #000000;
    color: #c0c0c0;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    padding: 10px;
    min-height: 0;
    overflow-y: auto;
}

.cmd-body p[b-eos2y597cy] {
    margin: 0 0 2px;
}

.cmd-prompt-line[b-eos2y597cy] {
    margin: 0 0 2px;
    display: flex;
    align-items: center;
}

.cmd-input[b-eos2y597cy] {
    background: transparent;
    border: none;
    color: #c0c0c0;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    outline: none;
    caret-color: #c0c0c0;
    flex: 1;
    min-width: 0;
    padding: 0;
}

/* ── Taskbar ── */
.win95-taskbar[b-eos2y597cy] {
    height: 30px;
    background-color: #c0c0c0;
    border-top: 2px solid #ffffff;
    user-select: none;
    -webkit-user-select: none;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 4px;
    padding: 0 4px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.win95-start-btn[b-eos2y597cy] {
    height: 22px;
    background-color: #c0c0c0;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #808080;
    border-bottom: 1px solid #808080;
    font-weight: bold;
    font-size: 11px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
}

.taskbar-divider[b-eos2y597cy] {
    width: 2px;
    height: 20px;
    background: #808080;
    border-right: 1px solid #ffffff;
}

.taskbar-windows[b-eos2y597cy] {
    flex: 1;
    display: flex;
    gap: 4px;
    overflow: hidden;
}

.taskbar-item[b-eos2y597cy] {
    height: 22px;
    background-color: #c0c0c0;
    border-top: 1px solid #808080;
    border-left: 1px solid #808080;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    padding: 0 8px;
    font-size: 11px;
    display: flex;
    align-items: center;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.taskbar-item.active[b-eos2y597cy] {
    border-top: 1px solid #808080;
    border-left: 1px solid #808080;
    background-color: #b0b0b0;
}

.taskbar-cmd-btn[b-eos2y597cy] {
    height: 22px;
    background-color: #000000;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid #808080;
}

.taskbar-cmd-btn:hover[b-eos2y597cy] {
    background-color: #222222;
}

.taskbar-clock[b-eos2y597cy] {
    font-size: 11px;
    padding: 0 8px;
    border: 1px solid #808080;
    height: 22px;
    display: flex;
    align-items: center;
    font-family: 'Arial', sans-serif;
}

/* ── Taskbar items ── */
.taskbar-item[b-eos2y597cy] {
    cursor: pointer;
}

/* ── Start button active (menu open) ── */
.win95-start-btn.active[b-eos2y597cy] {
    border-top: 1px solid #808080;
    border-left: 1px solid #808080;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    background-color: #b0b0b0;
}

/* ── Window: Minimized ── */
.win95-window.minimized[b-eos2y597cy] {
    display: none !important;
}

/* ── Window: Maximized ── */
.win95-window.maximized[b-eos2y597cy] {
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    box-shadow: none;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box;
}

.win95-window.maximized .win95-titlebar[b-eos2y597cy] {
    cursor: default;
}

/* ── Start Menu ── */
.win95-start-menu[b-eos2y597cy] {
    position: absolute;
    bottom: 30px;
    left: 0;
    background-color: #c0c0c0;
    border: 2px solid #ffffff;
    border-right-color: #808080;
    border-bottom-color: #808080;
    box-shadow: 2px 2px 0 #000;
    z-index: 10000;
    display: flex !important;
    flex-direction: row !important;
    min-width: 180px;
    user-select: none;
}

.start-menu-sidebar[b-eos2y597cy] {
    background: linear-gradient(to top, #000080, #1084d0);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: white;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 8px 4px;
    flex-shrink: 0;
}

.start-menu-items[b-eos2y597cy] {
    flex: 1;
    display: flex !important;
    flex-direction: column !important;
    padding: 2px 0;
}

.start-menu-item[b-eos2y597cy] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    cursor: pointer;
    font-size: 12px;
    white-space: nowrap;
}

.start-menu-item:hover[b-eos2y597cy] {
    background-color: #000080;
    color: white;
}

.start-menu-icon[b-eos2y597cy] {
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.start-menu-divider[b-eos2y597cy] {
    height: 2px;
    background: #808080;
    border-bottom: 1px solid #ffffff;
    margin: 2px 4px;
}

/* ── TXT file icon (generic text document) ── */
.txt-icon[b-eos2y597cy] {
    background: #ffffff;
    border: 1px solid #000000;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 1px 1px 0 #808080;
}

/* Folded corner */
.txt-icon[b-eos2y597cy]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent #c0c0c0 transparent transparent;
    filter: drop-shadow(-1px 1px 0 #808080);
    z-index: 1;
}

/* Text lines on body */
.txt-icon[b-eos2y597cy]::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 5px,
        #000080 5px,
        #000080 6px
    );
}

/* ── PDF icon ── */
.pdf-icon[b-eos2y597cy] {
    background: #ffffff;
    border: 1px solid #000000;
    position: relative;
    overflow: hidden;
    box-shadow: 1px 1px 0 #808080;
}

.pdf-icon[b-eos2y597cy]::before {
    content: 'PDF';
    position: absolute;
    top: 4px;
    left: 2px;
    right: 2px;
    height: 12px;
    background: #cc0000;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.pdf-icon[b-eos2y597cy]::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 4px,
        #808080 4px,
        #808080 5px
    );
}

/* ── Text file viewer window ── */
.txtfile-window[b-eos2y597cy] {
    width: 560px;
    height: 400px;
    display: flex;
    flex-direction: column;
}

/* Default open positions for the three text windows on the desktop.
   They cascade so opening all three doesn't fully overlap. */
.projects-window-default[b-eos2y597cy] { left: 170px; top: 65px; }
.resume-window-default[b-eos2y597cy]   { left: 200px; top: 90px; }
.contact-window-default[b-eos2y597cy]  { left: 230px; top: 115px; }

.txtfile-content[b-eos2y597cy] {
    flex: 1;
    margin: 0;
    padding: 6px 8px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    line-height: 1.5;
    color: #000000;
    background: #ffffff;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    overflow: auto;
    border: none;
    outline: none;
    box-sizing: border-box;
    width: 100%;
}

/* ── Projects viewer (hanging-indent fields) ── */
.proj-list[b-eos2y597cy] {
    flex: 1;
    min-height: 0;
    width: 100%;
    overflow: auto;
    box-sizing: border-box;
    background: #ffffff;
    color: #000000;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    line-height: 1.5;
    padding: 6px 8px;
}

.proj[b-eos2y597cy] {
    margin-bottom: 12px;
}

.proj-title[b-eos2y597cy] {
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

/* Align the Stack/Desc/Repo labels under the project name, i.e. past the
   "[01] " number prefix (5 chars) on the title line. Hanging indent (padding +
   negative text-indent, 9 chars for "Stack  : ") keeps wrapped value lines
   aligned under where the value starts. */
.proj-field[b-eos2y597cy] {
    margin-left: 5ch;
    padding-left: 9ch;
    text-indent: -9ch;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

.proj-empty[b-eos2y597cy] {
    background: #ffffff;
    color: #000000;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    padding: 6px 8px;
}

/* ── Resume Markdown viewer ── */
.resume-md-body[b-eos2y597cy] {
    display: block !important;
    overflow-y: auto;
    background: #ffffff;
    flex: 1;
}

.resume-doc[b-eos2y597cy] {
    padding: 16px 20px;
    font-family: 'Arial', sans-serif;
    color: #000000;
    max-width: 600px;
}

.resume-doc h1[b-eos2y597cy] {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 3px;
    color: #000000;
}

.resume-doc .resume-tagline[b-eos2y597cy] {
    font-size: 13px;
    color: #444444;
    margin: 0 0 5px;
}

.resume-doc .resume-meta[b-eos2y597cy] {
    font-size: 10px;
    color: #555555;
    margin: 0 0 8px;
}

.resume-doc .resume-meta a[b-eos2y597cy] {
    color: #000080;
    text-decoration: underline;
}

.resume-doc hr[b-eos2y597cy] {
    border: none;
    border-top: 1px solid #000000;
    margin: 8px 0 12px;
}

.resume-doc h2[b-eos2y597cy] {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #000000;
    padding-bottom: 2px;
    margin: 14px 0 6px;
    color: #000000;
}

.resume-doc h3[b-eos2y597cy] {
    font-size: 12px;
    font-weight: bold;
    margin: 10px 0 2px;
    color: #000000;
}

.resume-doc .resume-date[b-eos2y597cy] {
    font-size: 10px;
    color: #555555;
    margin: 0 0 4px;
    font-style: italic;
}

.resume-doc p[b-eos2y597cy] {
    font-size: 11px;
    margin: 0 0 6px;
    line-height: 1.5;
}

.resume-doc ul[b-eos2y597cy] {
    margin: 2px 0 8px 18px;
    padding: 0;
}

.resume-doc li[b-eos2y597cy] {
    font-size: 11px;
    margin-bottom: 4px;
    line-height: 1.4;
}

/* ── Notepad Icon ── */
.notepad-icon[b-eos2y597cy] {
    background: #ffffff;
    border: 1px solid #000000;
    position: relative;
    overflow: hidden;
    box-shadow: 1px 1px 0 #808080;
}

/* Blue ruled lines */
.notepad-icon[b-eos2y597cy]::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 4px;
    right: 4px;
    bottom: 3px;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 4px,
        #6666cc 4px,
        #6666cc 5px
    );
}

/* Dark header bar with spiral-hole dots */
.notepad-icon[b-eos2y597cy]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 11px;
    background: #000080;
    border-bottom: 1px solid #000000;
    z-index: 1;
    box-shadow:
        6px 3px 0 2px #c0c0c0,
        16px 3px 0 2px #c0c0c0,
        26px 3px 0 2px #c0c0c0;
}

/* ── Notepad Window ── */
.notepad-window[b-eos2y597cy] {
    left: 200px;
    top: 100px;
    width: 480px;
    height: 340px;
    display: flex;
    flex-direction: column;
}

.notepad-menubar[b-eos2y597cy] {
    background-color: #c0c0c0;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    padding: 1px 4px;
    border-bottom: 1px solid #808080;
    gap: 0;
    flex-shrink: 0;
}

.notepad-menu-item[b-eos2y597cy] {
    padding: 2px 8px;
    font-size: 11px;
    cursor: default;
    user-select: none;
}

.notepad-menu-item:hover[b-eos2y597cy] {
    background-color: #000080;
    color: #ffffff;
}

.notepad-body[b-eos2y597cy] {
    flex: 1;
    display: flex;
    min-height: 0;
    padding: 0;
}

.notepad-textarea[b-eos2y597cy] {
    flex: 1;
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    background-color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    padding: 4px;
    box-sizing: border-box;
    color: #000000;
    line-height: 1.4;
}

/* ── Paint Icon ── */
.paint-icon[b-eos2y597cy] {
    background: #c0c0c0;
    border: 1px solid #000000;
    position: relative;
    overflow: hidden;
    box-shadow: 1px 1px 0 #808080;
}

/* White canvas inset */
.paint-icon[b-eos2y597cy]::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: 1px solid #808080;
    box-shadow: inset 1px 1px 0 #ffffff;
}

/* Paint blobs on canvas — each box-shadow is a different color dot */
.paint-icon[b-eos2y597cy]::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff0000;
    top: 8px;
    left: 8px;
    box-shadow:
        9px 0   0 #0000cc,
        0   9px 0 #008800,
        9px 9px 0 #cc8800;
}

/* ── Paint Window ── */
.paint-window[b-eos2y597cy] {
    left: 160px;
    top: 60px;
    width: 580px;
    height: 480px;
}

/* Main area: toolbar + canvas */
.paint-main[b-eos2y597cy] {
    display: flex !important;
    flex-direction: row !important;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

/* Left toolbar */
.paint-toolbar[b-eos2y597cy] {
    width: 54px;
    background-color: #c0c0c0;
    border-right: 1px solid #808080;
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    padding: 4px 2px;
    gap: 4px;
    flex-shrink: 0;
    overflow: hidden;
}

.paint-tools-grid[b-eos2y597cy] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    width: 100%;
}

.paint-tool-gap[b-eos2y597cy] {
    /* filler for odd-numbered tools */
}

.paint-tool[b-eos2y597cy] {
    width: 24px;
    height: 24px;
    background-color: #c0c0c0;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #808080;
    border-bottom: 1px solid #808080;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

.paint-tool.active[b-eos2y597cy] {
    border-top: 1px solid #808080;
    border-left: 1px solid #808080;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    background-color: #b0b0b0;
}

.paint-tool:hover:not(.active)[b-eos2y597cy] {
    background-color: #d4d4d4;
}

.paint-toolbar-sep[b-eos2y597cy] {
    width: 90%;
    height: 1px;
    background: #808080;
    border-bottom: 1px solid #ffffff;
    margin: 2px 0;
}

/* Color preview box */
.paint-color-display[b-eos2y597cy] {
    width: 28px;
    height: 22px;
}

.paint-fg-color[b-eos2y597cy] {
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    box-sizing: border-box;
}

/* Brush sizes */
.paint-sizes[b-eos2y597cy] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    width: 100%;
}

.paint-size-btn[b-eos2y597cy] {
    width: 44px;
    height: 20px;
    background-color: #c0c0c0;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #808080;
    border-bottom: 1px solid #808080;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    outline: none;
}

.paint-size-btn.active[b-eos2y597cy] {
    border-top: 1px solid #808080;
    border-left: 1px solid #808080;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    background-color: #b0b0b0;
}

/* Dots representing brush sizes */
.pdot[b-eos2y597cy] {
    display: inline-block;
    background-color: #000000;
    border-radius: 50%;
}

.pdot-sm[b-eos2y597cy] { width: 3px;  height: 3px;  }
.pdot-md[b-eos2y597cy] { width: 6px;  height: 6px;  }
.pdot-lg[b-eos2y597cy] { width: 10px; height: 10px; }

/* Canvas scroll area */
.paint-canvas-area[b-eos2y597cy] {
    flex: 1;
    overflow: auto;
    background-color: #808080;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 8px;
    box-sizing: border-box;
}

.paint-canvas[b-eos2y597cy] {
    cursor: crosshair;
    background-color: #ffffff;
    border: 1px solid #000000;
    display: block;
    flex-shrink: 0;
}

/* Color palette strip */
.paint-palette[b-eos2y597cy] {
    background-color: #c0c0c0;
    border-top: 1px solid #808080;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    padding: 3px 4px;
    gap: 2px;
    flex-shrink: 0;
    height: 26px;
    overflow: hidden;
}

.paint-current-swatch[b-eos2y597cy] {
    width: 20px;
    height: 18px;
    border: 1px solid #000;
    flex-shrink: 0;
}

.paint-palette-sep[b-eos2y597cy] {
    width: 2px;
    height: 18px;
    background: #808080;
    border-right: 1px solid #ffffff;
    margin: 0 2px;
    flex-shrink: 0;
}

.paint-palette-color[b-eos2y597cy] {
    width: 16px;
    height: 16px;
    border: 1px solid #808080;
    cursor: pointer;
    flex-shrink: 0;
    box-sizing: border-box;
}

.paint-palette-color:hover[b-eos2y597cy] {
    border: 1px solid #000000;
    transform: scale(1.15);
}

.paint-palette-color.selected[b-eos2y597cy] {
    border: 2px solid #000000;
    outline: 1px solid #ffffff;
}

