.window {
    position: absolute;
    background: linear-gradient(180deg, #2a7fe9 0%, #1a68d6 45%, #0c58c5 100%);
    border: 1px solid #0c4ea8;
    border-radius: 10px 10px 4px 4px;
    box-shadow: 0 0 0 1px #80b4ff, 0 5px 16px rgba(0, 0, 0, 0.48);
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    overflow: hidden;
    padding: 2px 2px 3px;
}

.window::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 8px 8px 2px 2px;
    border: 1px solid rgba(188, 219, 255, 0.45);
    pointer-events: none;
}

.window.maximized {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100% - var(--taskbar-height)) !important;
    border-radius: 0;
    box-shadow: 0 0 0 1px #8ec1ff;
}

.window.maximized::before {
    border-radius: 0;
}

.window.maximized .window-titlebar {
    border-radius: 0;
}

.window.minimized {
    display: none;
}

.window .window-titlebar {
    height: 26px;
    background: linear-gradient(180deg, #2d8ef9 0%, #116adf 52%, #0a56c0 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px 0 7px;
    cursor: default;
    flex-shrink: 0;
    border-radius: 7px 7px 0 0;
    border: 1px solid #2a70cb;
    border-bottom-color: #044ca8;
}

.window.inactive .window-titlebar {
    background: linear-gradient(180deg, #90b0dc 0%, #6f95c9 52%, #5f82b1 100%);
    border-color: #6f8db8;
    border-bottom-color: #5575a6;
}

.window .window-title {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-left: 1px;
    font-family: Tahoma, Arial, sans-serif;
    line-height: 1;
}

.window.inactive .window-title {
    color: #e8f1ff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.35);
}

.window .window-title img {
    width: 16px;
    height: 16px;
    image-rendering: auto;
}

.window .window-controls {
    display: flex;
    gap: 3px;
    padding-right: 0;
}

.window .window-btn {
    width: 24px;
    height: 21px;
    border-radius: 4px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 46%),
        linear-gradient(180deg, #7bbcff 0%, #3e8ff0 54%, #1c69d5 100%);
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 1px rgba(30, 83, 176, 0.8), inset 0 -1px 0 rgba(2, 38, 97, 0.42), 0 0 0 1px #2e6fd2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0;
    line-height: 0;
    color: transparent;
}

.window .window-btn:hover {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.04) 46%),
        linear-gradient(180deg, #8ac6ff 0%, #4b98f2 54%, #2470dc 100%);
}

.window .window-btn:active {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 46%),
        linear-gradient(180deg, #2a73d6 0%, #1a5ebf 54%, #154ea7 100%);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.45), 0 0 0 1px #2657a9;
}

.window .window-btn.close-btn {
    width: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.04) 46%),
        linear-gradient(180deg, #ffbca2 0%, #f38057 54%, #de4d1e 100%);
    box-shadow: inset 0 0 0 1px rgba(185, 61, 18, 0.86), inset 0 -1px 0 rgba(122, 30, 0, 0.45), 0 0 0 1px #bb411d;
}

.window .window-btn.close-btn:hover {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.08) 46%),
        linear-gradient(180deg, #ffc7b1 0%, #fb8f67 54%, #e85a27 100%);
}

.window .window-btn.close-btn:active {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02) 46%),
        linear-gradient(180deg, #df633d 0%, #bf431d 54%, #a63512 100%);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.44), 0 0 0 1px #a63915;
}

.window .window-icon {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    pointer-events: none;
}

.window .window-icon-minimize::before {
    content: "";
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: 1px;
    height: 2px;
    border-radius: 1px;
    background: #f2f6ff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.window .window-icon-maximize::before {
    content: "";
    position: absolute;
    inset: 1px 1px 0;
    border: 2px solid #f1f6ff;
    border-top-width: 3px;
    border-radius: 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.window .maximize-btn.restore-mode .window-icon-maximize::before {
    inset: auto;
    top: 4px;
    left: 1px;
    width: 8px;
    height: 7px;
    border-width: 2px;
    border-top-width: 3px;
}

.window .maximize-btn.restore-mode .window-icon-maximize::after {
    content: "";
    position: absolute;
    top: 0;
    left: 4px;
    width: 8px;
    height: 7px;
    border: 2px solid #f1f6ff;
    border-top-width: 3px;
    border-radius: 0;
    background: transparent;
}

.window .window-icon-close::before,
.window .window-icon-close::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 0;
    width: 2px;
    height: 12px;
    border-radius: 1px;
    background: #f8fbff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.32);
}

.window .window-icon-close::before {
    transform: rotate(45deg);
}

.window .window-icon-close::after {
    transform: rotate(-45deg);
}

.window .window-content {
    flex: 1;
    background: #ece9d8;
    overflow: auto;
    display: flex;
    flex-direction: column;
    border: 1px solid #7f9db9;
    box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #d4d0c8;
}

.notepad-shell {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ece9d8;
}

.notepad-menubar {
    display: flex;
    align-items: center;
    min-height: 24px;
    background: #ece9d8;
    border-bottom: 1px solid #bdb8a6;
    padding-left: 7px;
}

.notepad-menu-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    padding: 0 10px;
    height: 23px;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 12px;
    color: #1a1a1a;
    cursor: default;
}

.notepad-menu-item:hover {
    background: #2f65d9;
    color: #fff;
}

.notepad-menu-item.active {
    background: #2f65d9;
    color: #fff;
}

.notepad-shell-editable .notepad-menubar {
    align-items: stretch;
    padding-left: 0;
}

.notepad-menu-group {
    position: relative;
}

.notepad-menu-button {
    border: 0;
    background: transparent;
    min-width: 44px;
    height: 23px;
    padding: 0 10px;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 12px;
    color: #111;
    cursor: default;
}

.notepad-menu-button:hover,
.notepad-menu-group.open .notepad-menu-button {
    background: #2f65d9;
    color: #fff;
}

.notepad-menu-dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    min-width: 154px;
    margin: 0;
    padding: 2px 0;
    list-style: none;
    display: none;
    background: #f4f4f4;
    border: 1px solid #8f8f8f;
    box-shadow: 1px 1px 0 #fff inset, -1px -1px 0 #d4d0c8 inset;
    z-index: 28;
}

.notepad-menu-group.open .notepad-menu-dropdown {
    display: block;
}

.notepad-menu-dropdown li {
    margin: 0;
    padding: 0;
}

.notepad-menu-dropdown .menu-separator {
    height: 1px;
    margin: 4px 2px;
    background: #d0d0d0;
}

.notepad-menu-dropdown button {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 4px 24px;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 12px;
    color: #111;
    cursor: default;
    position: relative;
}

.notepad-menu-dropdown button:hover {
    background: #2f65d9;
    color: #fff;
}

.notepad-menu-dropdown button.checked::before {
    content: "\2713";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
}

.notepad-editor-wrap {
    flex: 1;
    padding: 10px;
    background: #e7e7e7;
}

.notepad-shell-editable .notepad-editor-wrap {
    padding: 6px;
}

.notepad-content {
    width: 100%;
    height: 100%;
    padding: 8px;
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 13px;
    line-height: 1.35;
    white-space: pre;
    word-wrap: normal;
    overflow: auto;
    resize: none;
    border: 1px solid #d4d4d4;
    outline: none;
    background: #fff;
    color: #000;
    user-select: text;
    box-sizing: border-box;
}

.notepad-content.word-wrap {
    white-space: pre-wrap;
    word-break: break-word;
    overflow-x: hidden;
}

.notepad-dialog-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 60;
}

.notepad-dialog {
    width: min(320px, calc(100% - 20px));
    border: 1px solid #0c4ea8;
    background: #ece9d8;
    box-shadow: 0 0 0 1px #8ec1ff, 0 4px 12px rgba(0, 0, 0, 0.35);
}

.notepad-dialog-title {
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    background: linear-gradient(180deg, #2d8ef9 0%, #116adf 52%, #0a56c0 100%);
}

.notepad-dialog-body {
    padding: 14px 12px 12px;
    font-size: 12px;
    color: #111;
    line-height: 1.35;
}

.notepad-dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 0 12px 12px;
}

.notepad-dialog-ok {
    min-width: 72px;
    height: 24px;
    border: 1px solid #7f9db9;
    background: linear-gradient(180deg, #fff, #e4edf7);
    font-family: Tahoma, Arial, sans-serif;
    font-size: 12px;
    color: #1f3d73;
}

.notepad-dialog-ok:hover {
    background: linear-gradient(180deg, #fffdf5 0%, #f4e5bb 100%);
}

.xp-pane {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.xp-pane-header {
    background: linear-gradient(180deg, #edf4ff 0%, #d8e8ff 100%);
    border-bottom: 1px solid #a8bfe8;
    padding: 8px;
}

.xp-pane-title {
    font-size: 13px;
    font-weight: bold;
    color: #123e83;
}

.xp-pane-subtitle {
    margin-top: 2px;
    font-size: 11px;
    color: #355f9e;
}

.projects-content {
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    cursor: default;
    border: 1px solid transparent;
}

.project-item:hover {
    background: #316ac5;
    color: #fff;
    border: 1px solid #8ab4f8;
}

.project-item.selected {
    background: #316ac5;
    color: #fff;
    border: 1px dotted #d8ebff;
}

.project-item:active {
    background: #2050a0;
}

.project-item .project-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.project-item .project-name {
    font-weight: bold;
    font-size: 12px;
}

.project-item .project-stack {
    font-size: 10px;
    opacity: 0.75;
}

.project-item .project-desc {
    font-size: 10px;
    opacity: 0.82;
}

.contact-shell {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ece9d8;
}

.contact-header {
    padding: 12px 14px;
    border-bottom: 1px solid #b8cbe8;
    background: linear-gradient(180deg, #ebf5ff 0%, #dcecff 100%);
}

.contact-header-title {
    font-size: 17px;
    font-weight: bold;
    color: #123f83;
}

.contact-header-subtitle {
    margin-top: 3px;
    font-size: 12px;
    color: #2d5d9f;
}

.contact-content {
    padding: 10px;
    line-height: 1.4;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #c8d7ef;
    background: #f8fbff;
    box-shadow: inset 0 1px 0 #fff;
}

.contact-card:hover {
    border-color: #93b4e9;
    background: #edf4ff;
}

.contact-card-icon-wrap {
    width: 36px;
    height: 36px;
    border: 1px solid #c3d3eb;
    background: linear-gradient(180deg, #ffffff 0%, #eaf2ff 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon {
    width: 24px;
    height: 24px;
}

.contact-card-content {
    flex: 1;
    min-width: 0;
}

.contact-card-label {
    font-size: 11px;
    color: #325a95;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-link {
    color: #0c3f93;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    overflow-wrap: anywhere;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-card-action {
    min-width: 60px;
    height: 24px;
    border: 1px solid #7f9db9;
    background: linear-gradient(180deg, #ffffff 0%, #dce9fb 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: #1f3d73;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
}

.contact-card-action:hover {
    background: linear-gradient(180deg, #fffdf5 0%, #f4e5bb 100%);
    text-decoration: none;
}

.xp-list {
    padding: 8px;
}

.xp-list-header {
    background: #ebf3ff;
    border: 1px solid #b9ccec;
    color: #234f90;
    font-weight: bold;
    padding: 5px 8px;
    margin-bottom: 8px;
}

.xp-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #d5d5d5;
}

.xp-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    border-bottom: 1px solid #ececec;
    font-size: 12px;
}

.xp-list-item:last-child {
    border-bottom: none;
}

.xp-list-item:hover {
    background: #316ac5;
    color: #fff;
}

.xp-list-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mydocs-shell {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ece9d8;
    font-family: Tahoma, Arial, sans-serif;
}

.mydocs-menubar {
    height: 24px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0 6px;
    background: #ece9d8;
    border-bottom: 1px solid #bcb8a7;
}

.mydocs-menu-btn {
    height: 20px;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 12px;
    padding: 0 8px;
    cursor: default;
}

.mydocs-menu-btn:hover {
    background: #316ac5;
    color: #fff;
}

.mydocs-toolbar {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 7px;
    background: linear-gradient(180deg, #f7f7f7 0%, #ece9d8 100%);
    border-bottom: 1px solid #c8c3b3;
}

.mydocs-nav-btn {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    border: 1px solid #7f8ba5;
    background: linear-gradient(180deg, #ffffff 0%, #d9dce4 100%);
    color: #4b4b4b;
    font-size: 17px;
    line-height: 1;
    padding: 0;
}

.mydocs-nav-btn:disabled {
    opacity: 0.45;
}

.mydocs-toolbar-divider {
    width: 1px;
    height: 24px;
    background: #bdb8a5;
    margin: 0 4px;
}

.mydocs-tool-btn {
    height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid transparent;
    background: transparent;
    color: #222;
    font-size: 12px;
    padding: 0 8px;
}

.mydocs-tool-btn img {
    width: 18px;
    height: 18px;
}

.mydocs-tool-btn:hover:not(:disabled) {
    border-color: #8da6d8;
    background: #f4f7ff;
}

.mydocs-tool-btn:disabled {
    opacity: 0.45;
}

.mydocs-toolbar-spacer {
    flex: 1;
}

.mydocs-view-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #2b2b2b;
}

.mydocs-view-label select {
    height: 24px;
    border: 1px solid #7f9db9;
    background: #fff;
    font-size: 12px;
    padding: 0 4px;
}

.mydocs-address-row {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #efefef;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #cecece;
    padding: 0 7px;
}

.mydocs-address-label {
    font-size: 12px;
    color: #2b2b2b;
    width: 56px;
    text-align: right;
}

.mydocs-address-value {
    flex: 1;
    height: 24px;
    border: 1px solid #7f9db9;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-size: 12px;
    color: #1d1d1d;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mydocs-go-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #2f7c21;
    border-radius: 50%;
    background: linear-gradient(180deg, #73d464 0%, #2daf2d 100%);
    color: #fff;
    font-size: 21px;
    font-weight: 900;
    line-height: 0.85;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
    padding: 0;
}

.mydocs-go-btn:hover {
    background: linear-gradient(180deg, #82dd73 0%, #36b938 100%);
}

.mydocs-go-btn:active {
    background: linear-gradient(180deg, #2fa52f 0%, #2a922a 100%);
}

.mydocs-main {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: 250px 1fr;
    background: #f4f4f4;
}

.mydocs-sidebar {
    background: linear-gradient(180deg, #6f8cf4 0%, #5467d3 100%);
    border-right: 1px solid #8898de;
    padding: 10px 9px;
    overflow: auto;
}

.mydocs-side-group {
    margin-bottom: 10px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.mydocs-side-header {
    min-height: 29px;
    background: linear-gradient(180deg, #3774f8 0%, #1c4fcf 100%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 0 10px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.mydocs-side-list {
    margin: 0;
    padding: 7px 9px;
    list-style: none;
    background: #c8cee7;
}

.mydocs-side-list li + li {
    margin-top: 2px;
}

.mydocs-side-action,
.mydocs-place-btn {
    width: 100%;
    border: 0;
    background: transparent;
    color: #1f57ca;
    font-size: 12px;
    text-align: left;
    padding: 4px 3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mydocs-side-action:hover:not(:disabled),
.mydocs-place-btn:hover {
    background: #316ac5;
    color: #fff;
}

.mydocs-side-action:disabled {
    opacity: 0.5;
}

.mydocs-place.active .mydocs-place-btn {
    background: #316ac5;
    color: #fff;
}

.mydocs-place-btn img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mydocs-details-panel {
    background: #c8cee7;
    color: #1e2f56;
    padding: 9px 10px 10px;
    font-size: 11px;
    line-height: 1.35;
}

.mydocs-detail-name {
    font-size: 13px;
    font-weight: bold;
    color: #0f2f72;
    margin-bottom: 6px;
}

.mydocs-detail-meta {
    margin-bottom: 3px;
}

.mydocs-details-panel pre {
    margin: 6px 0 0;
    white-space: pre-wrap;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 11px;
}

.mydocs-content {
    min-width: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.mydocs-content-head {
    height: 40px;
    padding: 0 10px;
    border-bottom: 1px solid #d7d7d7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mydocs-folder-title {
    font-size: 18px;
    font-weight: bold;
    color: #0f2f72;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mydocs-search-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #2e2e2e;
}

.mydocs-search-wrap input {
    width: 190px;
    height: 24px;
    border: 1px solid #7f9db9;
    padding: 0 6px;
    font-size: 12px;
}

.mydocs-columns {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 140px 90px 170px;
    border-bottom: 1px solid #d7d7d7;
    background: #f2f2f2;
}

.mydocs-columns.hidden {
    display: none;
}

.mydocs-col {
    min-width: 0;
    padding: 4px 8px;
    font-size: 12px;
    color: #2f2f2f;
    border-right: 1px solid #e1e1e1;
}

.mydocs-col:last-child {
    border-right: 0;
}

.mydocs-col-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mydocs-items {
    flex: 1;
    min-height: 0;
    overflow: auto;
    background: #fff;
    outline: none;
}

.mydocs-items[data-view="details"] .mydocs-item {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 140px 90px 170px;
    border-bottom: 1px solid #f2f2f2;
    cursor: default;
}

.mydocs-items[data-view="list"] .mydocs-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    border-bottom: 1px solid #f2f2f2;
    cursor: default;
}

.mydocs-item:hover {
    background: #eef4ff;
}

.mydocs-item.selected {
    background: #316ac5;
}

.mydocs-item.selected .mydocs-col,
.mydocs-item.selected .mydocs-item-name {
    color: #fff;
}

.mydocs-item-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mydocs-item-name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mydocs-empty-state {
    padding: 18px 14px;
    font-size: 12px;
    color: #3a3a3a;
}

.mydocs-status {
    height: 23px;
    line-height: 22px;
    padding: 0 10px;
    border-top: 1px solid #d3d3d3;
    background: #ece9d8;
    color: #2b2b2b;
    font-size: 11px;
}

.recycle-root {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ece9d8;
}

.recycle-toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-bottom: 1px solid #c3c3b8;
    background: #ece9d8;
}

.recycle-action-btn {
    border: 1px solid #7f9db9;
    background: linear-gradient(180deg, #fff, #e4edf7);
    padding: 3px 10px;
    font-size: 11px;
    color: #1f3d73;
}

.recycle-action-btn:hover:not(:disabled) {
    background: linear-gradient(180deg, #fffdf5, #f4e5bb);
}

.recycle-action-btn:disabled {
    opacity: 0.45;
}

.recycle-list {
    flex: 1;
    overflow: auto;
    background: #fff;
}

.recycle-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-bottom: 1px solid #ececec;
    cursor: default;
}

.recycle-item:hover {
    background: #eef5ff;
}

.recycle-item.selected {
    background: #316ac5;
    color: #fff;
}

.recycle-item-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.recycle-item-meta {
    flex: 1;
    min-width: 0;
}

.recycle-item-name {
    font-size: 12px;
    font-weight: bold;
    color: #111;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.recycle-item-sub {
    margin-top: 2px;
    font-size: 10px;
    color: #4f4f4f;
}

.recycle-item.selected .recycle-item-name,
.recycle-item.selected .recycle-item-sub {
    color: #fff;
}

.recycle-item-restore {
    border: 1px solid #7f9db9;
    background: linear-gradient(180deg, #fff, #e4edf7);
    padding: 2px 8px;
    font-size: 11px;
    color: #1f3d73;
}

.recycle-item-restore:hover {
    background: linear-gradient(180deg, #fffdf5, #f4e5bb);
}

.recycle-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #2b2b2b;
    font-size: 12px;
}

.recycle-empty img {
    width: 44px;
    height: 44px;
}

.mycomputer-shell {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ece9d8;
    font-family: Tahoma, Arial, sans-serif;
}

.mycomputer-menubar {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 12px;
    background: #ece9d8;
    border-bottom: 1px solid #bdb8a6;
    font-size: 13px;
    color: #1f1f1f;
}

.mycomputer-menubar span {
    height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 6px;
}

.mycomputer-menubar span:hover {
    background: #316ac5;
    color: #fff;
}

.mycomputer-toolbar {
    height: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    background: #ece9d8;
    border-bottom: 1px solid #c8c5b4;
}

.mc-nav-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #7a7a7a;
    background: linear-gradient(180deg, #f8f8f8 0%, #cfcfcf 58%, #a8a8a8 100%);
    color: #4d4d4d;
    font-size: 22px;
    line-height: 1;
    padding: 0;
}

.mc-nav-btn:hover {
    background: linear-gradient(180deg, #ffffff 0%, #dfdfdf 58%, #bdbdbd 100%);
}

.mc-nav-label {
    font-size: 13px;
    color: #2a2a2a;
    margin-right: 8px;
}

.mc-divider {
    width: 1px;
    height: 60%;
    background: #b7b29c;
    margin: 0 6px;
}

.mc-tool-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 40px;
    height: 34px;
    padding: 0 8px;
    border: 1px solid transparent;
    color: #222;
    font-size: 13px;
}

.mc-tool-item:hover {
    border-color: #8da6d8;
    background: #f5f8ff;
}

.mc-tool-item img {
    width: 26px;
    height: 26px;
}

.mycomputer-address-row {
    height: 40px;
    display: flex;
    align-items: center;
    background: #efefef;
    border-bottom: 1px solid #c7c7c7;
}

.mc-address-label {
    width: 90px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e3dfcf;
    border-right: 1px solid #c8c4b6;
    color: #2b2b2b;
    font-size: 12px;
}

.mc-address-value {
    flex: 1;
    height: 28px;
    margin: 0 8px;
    border: 1px solid #b6b6b6;
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 9px;
    font-size: 12px;
}

.mc-address-value img {
    width: 19px;
    height: 19px;
}

.mc-go-btn {
    width: 34px;
    height: 34px;
    margin-right: 10px;
    border: 1px solid #2f7c21;
    border-radius: 50%;
    background: linear-gradient(180deg, #73d464 0%, #2daf2d 100%);
    color: #fff;
    font-size: 23px;
    font-weight: 900;
    line-height: 0.85;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
    padding: 0;
}

.mc-go-btn:hover {
    background: linear-gradient(180deg, #82dd73 0%, #36b938 100%);
}

.mc-go-btn:active {
    background: linear-gradient(180deg, #2fa52f 0%, #2a922a 100%);
}

.mycomputer-main {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: 290px 1fr;
    background: #f2f2f2;
}

.mycomputer-sidebar {
    background: linear-gradient(180deg, #6f8cf4 0%, #5567d3 100%);
    padding: 10px 10px 12px;
    border-right: 1px solid #8e9de8;
    overflow: auto;
}

.mc-side-group {
    margin-bottom: 12px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.mc-side-header {
    height: 40px;
    background: linear-gradient(180deg, #3774f8 0%, #1c4fcf 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    font-size: 13px;
    font-weight: bold;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

.mc-chev {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.mc-side-list {
    list-style: none;
    margin: 0;
    padding: 12px;
    background: #c8cee7;
}

.mc-side-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #1f57ca;
    padding: 7px 2px;
}

.mc-side-list li[data-mc-open-url] {
    cursor: pointer;
}

.mc-side-list li[data-mc-open-url]:hover {
    background: #316ac5;
}

.mc-side-list li[data-mc-open-url]:hover span {
    color: #fff;
}

.mc-side-list li img {
    width: 31px;
    height: 31px;
}

.mycomputer-content {
    background: #f5f7fb;
    padding: 8px 13px 14px;
    overflow: auto;
}

.mc-content-group {
    margin-bottom: 8px;
}

.mc-content-group h3 {
    margin: 0;
    padding: 1px 2px 5px;
    font-size: 13px;
    color: #111;
    border-bottom: 3px solid #9fbff4;
}

.mc-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 10px 34px;
    padding: 12px 4px 8px;
}

.mc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 2px 0;
    border: 1px solid transparent;
}

.mc-item[data-mc-open-url] {
    cursor: pointer;
}

.mc-item:hover {
    background: #316ac5;
    color: #fff;
    border-color: #8ab4f8;
}

.mc-item img {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.mc-item span {
    font-size: 13px;
    color: #111;
}

.mc-item:hover span {
    color: #fff;
}

.ie-app {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ece9d8;
}

.ie-menubar {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 12px;
    background: #ece9d8;
    border-bottom: 1px solid #bdb8a6;
    font-size: 13px;
    color: #1f1f1f;
}

.ie-menubar span {
    height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 6px;
}

.ie-menubar span:hover {
    background: #316ac5;
    color: #fff;
}

.ie-toolbar {
    height: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    border-bottom: 1px solid #c8c5b4;
    background: #ece9d8;
}

.ie-nav-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #7a7a7a;
    background: linear-gradient(180deg, #f8f8f8 0%, #cfcfcf 58%, #a8a8a8 100%);
    color: #4d4d4d;
    font-size: 22px;
    line-height: 1;
    padding: 0;
}

.ie-nav-btn:hover {
    background: linear-gradient(180deg, #ffffff 0%, #dfdfdf 58%, #bdbdbd 100%);
}

.ie-nav-label {
    font-size: 13px;
    color: #2a2a2a;
    margin-right: 6px;
}

.ie-toolbar-divider {
    width: 1px;
    height: 60%;
    background: #b7b29c;
    margin: 0 6px;
}

.ie-address-label {
    font-size: 12px;
    color: #2b2b2b;
}

.ie-address-bar {
    flex: 1;
    min-width: 140px;
    height: 28px;
    border: 1px solid #b6b6b6;
    background: #fff;
    padding: 0 9px;
    font-size: 12px;
    color: #222;
}

.ie-go-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #2f7c21;
    border-radius: 50%;
    background: linear-gradient(180deg, #73d464 0%, #2daf2d 100%);
    color: #fff;
    font-size: 23px;
    font-weight: 900;
    line-height: 0.85;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.ie-go-btn:hover {
    background: linear-gradient(180deg, #82dd73 0%, #36b938 100%);
    color: #fff;
}

.ie-frame-wrap {
    flex: 1;
    background: #fff;
    border-top: 1px solid #fff;
}

.ie-frame {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
}

.mpc-app {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ece9d8;
}

.mpc-toolbar {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 8px;
    border-bottom: 1px solid #b9b6a8;
    background: linear-gradient(180deg, #f8f8f8 0%, #ece9d8 100%);
}

.mpc-toolbar-label {
    font-size: 12px;
    color: #1d1d1d;
    font-weight: bold;
}

.mpc-open-link {
    height: 22px;
    line-height: 20px;
    padding: 0 10px;
    border: 1px solid #7f9db9;
    background: linear-gradient(180deg, #fff, #e4edf7);
    color: #1f3d73;
    text-decoration: none;
    font-size: 11px;
}

.mpc-open-link:hover {
    background: linear-gradient(180deg, #fffdf5, #f4e5bb);
    color: #1f3d73;
}

.mpc-frame-wrap {
    flex: 1;
    min-height: 0;
    background: #000;
    padding: 6px;
}

.mpc-frame {
    width: 100%;
    height: 100%;
    border: 1px solid #141414;
    background: #000;
}

.spotify-app {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #101216;
    color: #f2f4f7;
}

.spotify-toolbar {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    background: linear-gradient(180deg, #1a1f28 0%, #11151c 100%);
    border-bottom: 1px solid #242d3a;
}

.spotify-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f7f8fa;
    font-size: 14px;
    font-weight: 700;
}

.spotify-brand img {
    width: 20px;
    height: 20px;
}

.spotify-open-btn {
    height: 28px;
    line-height: 26px;
    padding: 0 12px;
    border: 1px solid #1d7d3e;
    border-radius: 14px;
    background: linear-gradient(180deg, #28c95f 0%, #169644 100%);
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
}

.spotify-open-btn:hover {
    background: linear-gradient(180deg, #34d66b 0%, #1ea34c 100%);
    color: #fff;
}

.spotify-layout {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: 290px 1fr;
    background: #0e1117;
}

.spotify-sidebar {
    background: linear-gradient(180deg, #161b24 0%, #10141c 100%);
    border-right: 1px solid #252f3c;
    padding: 12px 10px;
    overflow: auto;
}

.spotify-sidebar-section + .spotify-sidebar-section {
    margin-top: 12px;
}

.spotify-sidebar-title {
    font-size: 11px;
    font-weight: 700;
    color: #8da1bc;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 2px 6px 7px;
}

.spotify-search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 0 4px;
}

.spotify-search-input {
    height: 30px;
    padding: 0 10px;
    border: 1px solid #2e3b4d;
    border-radius: 6px;
    background: #0d121a;
    color: #ecf2fb;
    font-size: 12px;
}

.spotify-search-input:focus {
    border-color: #2f7add;
    outline: none;
    box-shadow: 0 0 0 1px #2f7add4a;
}

.spotify-search-btn {
    height: 30px;
    border: 1px solid #2a8f46;
    border-radius: 6px;
    background: linear-gradient(180deg, #31bf5d 0%, #1b9643 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 0 10px;
}

.spotify-search-btn:hover {
    background: linear-gradient(180deg, #41cd6b 0%, #26a650 100%);
}

.spotify-track-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 256px;
    overflow: auto;
    padding: 0 2px 2px;
}

.spotify-track-btn {
    width: 100%;
    border: 1px solid #253141;
    border-radius: 6px;
    background: #131923;
    color: #e4ebf7;
    text-align: left;
    padding: 8px 9px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
}

.spotify-track-btn:hover {
    background: #1a2331;
    border-color: #2f4460;
}

.spotify-track-btn.active {
    background: linear-gradient(180deg, #2a7adc40 0%, #2a7adc24 100%);
    border-color: #3f83d6;
}

.spotify-track-title {
    font-size: 12px;
    line-height: 1.2;
    color: #f4f8ff;
}

.spotify-track-artist {
    font-size: 11px;
    line-height: 1.2;
    color: #afbed3;
}

.spotify-queue-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 2px 2px;
}

.spotify-recent-btn {
    height: 28px;
    border: 1px solid #2d3b4f;
    border-radius: 6px;
    background: #111821;
    color: #d6e0f1;
    font-size: 11px;
    text-align: left;
    padding: 0 9px;
}

.spotify-recent-btn:hover {
    background: #182231;
    border-color: #40638d;
}

.spotify-empty-text {
    color: #8ea2bf;
    font-size: 11px;
    padding: 5px 6px;
}

.spotify-main {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 14px;
    gap: 10px;
    background: linear-gradient(180deg, #131925 0%, #0f141d 100%);
}

.spotify-player-shell {
    border: 1px solid #253145;
    border-radius: 10px;
    overflow: hidden;
    min-height: 240px;
    background: #090c12;
}

.spotify-player {
    width: 100%;
    height: 100%;
    min-height: 240px;
}

.spotify-now {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spotify-now-art {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: linear-gradient(145deg, #2fbf5c 0%, #14753a 100%);
    padding: 10px;
}

.spotify-now-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spotify-now-title {
    color: #f8fbff;
    font-size: 16px;
    font-weight: 700;
}

.spotify-now-artist {
    color: #b7c7dc;
    font-size: 12px;
}

.spotify-progress-row {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 10px;
    color: #aec0d8;
    font-size: 11px;
}

.spotify-progress-row input[type="range"] {
    width: 100%;
}

.spotify-progress-row input[type="range"]::-webkit-slider-runnable-track,
.spotify-volume-row input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2d7edf 0%, #44bcff 100%);
}

.spotify-progress-row input[type="range"]::-webkit-slider-thumb,
.spotify-volume-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    margin-top: -5px;
    border-radius: 50%;
    border: 1px solid #deecff;
    background: #f8fdff;
}

.spotify-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.spotify-controls button {
    height: 32px;
    min-width: 86px;
    border: 1px solid #314056;
    border-radius: 16px;
    background: #1a2231;
    color: #e7edf8;
    font-size: 11px;
    padding: 0 12px;
    font-weight: 700;
}

.spotify-controls button:hover {
    border-color: #4a6488;
    background: #243249;
}

.spotify-controls button.active {
    border-color: #2f8f49;
    color: #6ce58f;
    background: #153121;
}

.spotify-primary-control {
    border-color: #2a8943;
    background: linear-gradient(180deg, #2fbb5b 0%, #1a8f41 100%);
    color: #fff;
}

.spotify-primary-control:hover {
    background: linear-gradient(180deg, #3bc969 0%, #24a14f 100%);
}

.spotify-volume-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cedcf0;
    font-size: 11px;
}

.spotify-volume-row span {
    min-width: 46px;
    font-weight: 700;
}

.spotify-volume-row input[type="range"] {
    flex: 1;
}

.spotify-status {
    height: 24px;
    line-height: 22px;
    padding: 0 10px;
    font-size: 11px;
    color: #c8d6ea;
    border-top: 1px solid #263344;
    background: #111824;
    border-radius: 6px;
}

@media (max-width: 980px) {
    .spotify-layout {
        grid-template-columns: 1fr;
    }

    .spotify-sidebar {
        border-right: 0;
        border-bottom: 1px solid #252f3c;
        max-height: 240px;
    }
}

.control-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ece9d8;
    font-family: Tahoma, Arial, sans-serif;
}

.control-menubar {
    height: 32px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0 12px;
    background: #ece9d8;
    border-bottom: 1px solid #bdb8a6;
    font-size: 13px;
    color: #1f1f1f;
}

.control-menubar span {
    height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 6px;
}

.control-menubar span:hover {
    background: #316ac5;
    color: #fff;
}

.control-toolbar {
    height: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    background: #ece9d8;
    border-bottom: 1px solid #c8c5b4;
}

.control-arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #2f7c21;
    background: linear-gradient(180deg, #73d464 0%, #2daf2d 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 0.85;
    padding: 0;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

.control-arrow-btn:hover {
    background: linear-gradient(180deg, #82dd73 0%, #36b938 100%);
}

.control-arrow-btn:active {
    background: linear-gradient(180deg, #2fa52f 0%, #2a922a 100%);
}

.control-arrow-btn-go {
    width: 36px;
    height: 36px;
    font-size: 24px;
}

.control-toolbar-divider {
    width: 1px;
    height: 60%;
    background: #b7b29c;
    margin: 0 6px;
}

.control-toolbar-label {
    font-size: 13px;
    color: #2a2a2a;
}

.control-address-row {
    height: 40px;
    display: flex;
    align-items: center;
    background: #efefef;
    border-bottom: 1px solid #c7c7c7;
}

.control-address-label {
    width: 90px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e3dfcf;
    border-right: 1px solid #c8c4b6;
    color: #2b2b2b;
    font-size: 12px;
}

.control-address-value {
    flex: 1;
    height: 28px;
    margin: 0 8px;
    border: 1px solid #b6b6b6;
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 9px;
    font-size: 12px;
}

.control-address-value img {
    width: 19px;
    height: 19px;
}

.control-layout {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: 290px 1fr;
}

.control-sidebar {
    background: linear-gradient(180deg, #6f8cf4 0%, #5567d3 100%);
    border-right: 1px solid #8e9de8;
    padding: 10px 10px 12px;
    overflow: auto;
}

.control-side-group {
    margin-bottom: 12px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.control-side-title {
    min-height: 40px;
    background: linear-gradient(180deg, #3774f8 0%, #1c4fcf 100%);
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 0 12px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

.control-side-link,
.control-status-line {
    width: 100%;
    border: 0;
    background: #c8cee7;
    color: #1f57ca;
    font-size: 12px;
    text-align: left;
    padding: 8px 10px;
    display: block;
}

.control-side-link {
    cursor: pointer;
}

.control-side-link:hover {
    background: #316ac5;
    color: #fff;
}

.control-status-line {
    color: #213968;
    font-size: 12px;
}

.control-main {
    min-width: 0;
    background: #f5f7fb;
    padding: 8px 13px 14px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.control-card {
    border: 0;
    background: transparent;
    padding: 0;
}

.control-card-title {
    margin: 0;
    padding: 1px 2px 5px;
    font-size: 13px;
    font-weight: bold;
    color: #111;
    border-bottom: 3px solid #9fbff4;
}

.control-card-subtitle {
    margin-top: 7px;
    margin-bottom: 2px;
    font-size: 11px;
    color: #3e5f8f;
}

.control-row {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.control-chip {
    border: 1px solid #7f9db9;
    background: linear-gradient(180deg, #fff, #e4edf7);
    color: #1f3d73;
    font-size: 11px;
    padding: 3px 10px;
    cursor: pointer;
    min-height: 24px;
}

.control-chip:hover {
    background: linear-gradient(180deg, #fffdf5, #f4e5bb);
}

.control-chip.active {
    background: #316ac5;
    border-color: #24508f;
    color: #fff;
}

.control-wallpaper-grid {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
}

.control-wallpaper-card {
    border: 1px solid #7f9db9;
    background: #eaf2fe;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    text-align: left;
    cursor: pointer;
}

.control-wallpaper-card:hover {
    border-color: #6f90c3;
    background: #dfeafc;
}

.control-wallpaper-card.active {
    border-color: #24508f;
    box-shadow: inset 0 0 0 1px #9ec3f6;
    background: #d0e2ff;
}

.control-wallpaper-preview {
    display: block;
    width: 100%;
    height: 58px;
    border: 1px solid #8ea8d3;
    background-color: #9fb4d4;
    background-size: cover;
    background-position: center;
}

.control-wallpaper-label {
    font-size: 11px;
    color: #1e3f71;
    font-weight: bold;
}

.control-volume {
    margin-top: 8px;
    display: grid;
    gap: 5px;
    font-size: 11px;
    color: #2c4e83;
}

.control-volume input[type="range"] {
    width: 100%;
}

.control-shortcuts {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.control-shortcut-btn {
    min-height: 28px;
    border: 1px solid #7f9db9;
    background: linear-gradient(180deg, #fff, #e4edf7);
    color: #1f3d73;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
}

.control-shortcut-btn:hover {
    background: linear-gradient(180deg, #fffdf5, #f4e5bb);
}

.paint-app {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ece9d8;
    user-select: none;
}

.paint-menubar {
    min-height: 25px;
    display: flex;
    align-items: center;
    gap: 1px;
    padding: 0 5px;
    border-bottom: 1px solid #bcb8a7;
    background: #ece9d8;
}

.paint-menu-item {
    border: 0;
    background: transparent;
    color: #111;
    font-size: 12px;
    font-family: Tahoma, Arial, sans-serif;
    min-width: 42px;
    height: 22px;
    padding: 0 10px;
    text-align: left;
    cursor: default;
}

.paint-menu-item:hover {
    background: #316ac5;
    color: #fff;
}

.paint-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 5px 7px;
    border-bottom: 1px solid #cbc7b8;
    background: linear-gradient(180deg, #f8f7f2 0%, #ece9d8 100%);
    font-size: 11px;
    flex-wrap: wrap;
}

.paint-toolbar-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.paint-field {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #202020;
    font-family: Tahoma, Arial, sans-serif;
}

.paint-size {
    height: 22px;
    border: 1px solid #7f9db9;
    background: #fff;
    font-size: 11px;
    padding: 0 4px;
    min-width: 70px;
    font-family: Tahoma, Arial, sans-serif;
}

.paint-workspace {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: 56px 1fr;
    background: #d4d0c8;
}

.paint-toolbox {
    background: linear-gradient(180deg, #f4f4f4 0%, #d8d8d8 100%);
    border-right: 1px solid #a8a8a8;
    padding: 6px 4px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    align-content: start;
}

.paint-tool-btn {
    height: 24px;
    border: 1px solid #7f7f7f;
    background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

.paint-tool-btn:hover {
    background: linear-gradient(180deg, #fffdf5 0%, #f3e8c9 100%);
}

.paint-tool-btn.active {
    background: #b8d2ff;
    border-color: #3f6fb2;
    box-shadow: inset 0 0 0 1px #dceaff;
}

.paint-tool-glyph {
    display: block;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}

.paint-tool-btn::before {
    content: none;
}

.paint-tool-btn[data-paint-tool="brush"] .paint-tool-glyph {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M10.8 1l4.2 4.2-4.9 4.9-4.2-4.2z' fill='%235b88c6'/%3E%3Cpath d='M1 15c3 0 5-1.9 5.1-4L4 8.9C4 11.6 2 12.3 1 15z' fill='%233f2f1d'/%3E%3C/svg%3E");
}

.paint-tool-btn[data-paint-tool="pencil"] .paint-tool-glyph {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 12l7.8-7.8 2.1 2.1L4.1 14H2z' fill='%23d7b35d'/%3E%3Cpath d='M9.8 2.2l1.4-1.4 2.1 2.1-1.4 1.4z' fill='%23555'/%3E%3Cpath d='M2 12l2 2-2 .8z' fill='%23333'/%3E%3C/svg%3E");
}

.paint-tool-btn[data-paint-tool="eraser"] .paint-tool-glyph {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect x='2' y='5' width='12' height='7' rx='1' fill='%23f3d5cb' stroke='%238e6b63'/%3E%3C/svg%3E");
}

.paint-tool-btn[data-paint-tool="line"] .paint-tool-glyph {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cline x1='2' y1='13' x2='14' y2='3' stroke='%231f2b3a' stroke-width='2'/%3E%3C/svg%3E");
}

.paint-tool-btn[data-paint-tool="rect"] .paint-tool-glyph {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect x='2.5' y='4' width='11' height='8' fill='none' stroke='%231f2b3a' stroke-width='2'/%3E%3C/svg%3E");
}

.paint-tool-btn[data-paint-tool="ellipse"] .paint-tool-glyph {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cellipse cx='8' cy='8' rx='5.5' ry='4' fill='none' stroke='%231f2b3a' stroke-width='2'/%3E%3C/svg%3E");
}

.paint-btn {
    border: 1px solid #8a99ad;
    background: linear-gradient(180deg, #ffffff 0%, #dbe5f4 100%);
    padding: 0 10px;
    height: 24px;
    font-size: 11px;
    font-family: Tahoma, Arial, sans-serif;
    cursor: pointer;
}

.paint-btn:hover {
    background: linear-gradient(180deg, #fffdf5 0%, #f4e5bb 100%);
}

.paint-canvas-wrap {
    flex: 1;
    padding: 10px;
    overflow: auto;
    background: #d4d0c8;
}

.paint-canvas-inner {
    display: inline-block;
    background: #fff;
    border: 1px solid #7f9db9;
    box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #d4d0c8;
}

.paint-canvas {
    display: block;
    background: #fff;
    border: 0;
    width: 100%;
    min-width: 640px;
    min-height: 420px;
    touch-action: none;
    cursor: crosshair;
}

.paint-statusbar {
    display: grid;
    grid-template-columns: minmax(130px, auto) auto 1fr;
    align-items: center;
    gap: 8px;
    padding: 4px 6px;
    border-top: 1px solid #b8b4a6;
    background: #ece9d8;
}

.paint-status {
    min-height: 20px;
    border: 1px solid #9e9a8c;
    background: #f8f6ee;
    display: inline-flex;
    align-items: center;
    padding: 0 6px;
    font-size: 11px;
    color: #1f1f1f;
    font-family: Tahoma, Arial, sans-serif;
}

.paint-current-colors {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.paint-color-chip {
    width: 18px;
    height: 18px;
    border: 1px solid #4f4f4f;
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.paint-color-primary {
    outline: 1px solid #fff;
}

.paint-swatches {
    display: grid;
    grid-template-columns: repeat(12, minmax(14px, 1fr));
    gap: 2px;
}

.paint-swatch {
    width: 100%;
    height: 16px;
    border: 1px solid #5e5e5e;
    padding: 0;
    cursor: pointer;
}

.paint-swatch.active {
    outline: 1px solid #fff;
    box-shadow: 0 0 0 1px #2556a2;
}

.paint-hint {
    min-height: 18px;
    border-top: 1px solid #d7d2c1;
    background: #ece9d8;
    color: #3b3a37;
    font-size: 10px;
    line-height: 18px;
    padding: 0 8px;
    font-family: Tahoma, Arial, sans-serif;
}

.cmd-terminal {
    background: #000;
    color: #ccc;
    font-family: "Lucida Console", "Consolas", monospace;
    font-size: 14px;
    padding: 6px;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.cmd-line {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.cmd-prompt {
    color: #fff;
}

.cmd-input-line {
    display: flex;
    align-items: center;
}

.cmd-input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    flex: 1;
    caret-color: #fff;
    user-select: text;
}

.cmd-output {
    color: #ccc;
    white-space: pre-wrap;
    padding-left: 0;
    font-size: 13px;
}

.cmd-output.error {
    color: #f66;
}

.cmd-output.success {
    color: #6f6;
}

.coming-soon-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ece9d8;
    color: #1f2f48;
    font-family: Tahoma, Arial, sans-serif;
}

.coming-soon-title {
    font-size: 24px;
    font-weight: 700;
    color: #1b3f7a;
}

.coming-soon-subtitle {
    font-size: 12px;
    color: #3b5177;
}

@media (max-width: 760px) {
    .window .window-titlebar {
        height: 24px;
    }

    .window .window-btn {
        width: 20px;
        height: 18px;
        border-radius: 3px;
    }

    .window .window-btn.close-btn {
        width: 20px;
    }

    .window .window-icon {
        width: 10px;
        height: 10px;
    }

    .notepad-menubar {
        min-height: 26px;
    }

    .notepad-menu-item {
        height: 25px;
        min-width: 36px;
        padding: 0 8px;
        font-size: 11px;
    }

    .cmd-terminal {
        font-size: 12px;
    }

    .control-layout {
        grid-template-columns: 1fr;
    }

    .control-sidebar {
        max-height: 220px;
        border-right: 0;
        border-bottom: 1px solid #8e9de8;
    }

    .control-shortcuts {
        grid-template-columns: 1fr;
    }

    .paint-workspace {
        grid-template-columns: 44px 1fr;
    }

    .paint-toolbox {
        grid-template-columns: 1fr;
    }

    .paint-statusbar {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .paint-swatches {
        grid-template-columns: repeat(8, minmax(14px, 1fr));
    }

    .paint-canvas {
        min-width: 500px;
    }
}
