/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    font-family: 'MS Sans Serif', sans-serif;
    overflow: hidden;
    background-color: #d4d4d4;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
}

/* Desktop Icons */
#desktop {
    height: calc(100vh - 28px);
    padding: 5px;
}

.desktop-icon {
    width: 75px;
    text-align: center;
    margin: 10px;
    color: white;
    cursor: pointer;
}

.desktop-icon img {
    width: 32px;
    height: 32px;
}

.desktop-icon span {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

.desktop-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.desktop-icon:active {
    background: rgba(255, 255, 255, 0.3);
}

/* Taskbar */
#taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 44px;
    background-color: #c0c0c0;
    border-top: 1px solid #ffffff;
    display: flex;
    align-items: center;
    padding: 2px;
}

#start-button {
    display: flex;
    align-items: center;
    padding: 2px 8px;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #ffffff #404040 #404040 #ffffff;
    font-weight: bold;
    font-size: 14px;
    height: 40px;
    margin: 2px;
    cursor: pointer;
}

#start-button:hover {
    background: #d4d0c8;
}

#start-button:active {
    border-color: #404040 #ffffff #ffffff #404040;
    padding: 3px 7px 1px 9px;
}

#start-button:active img {
    animation: chromatic 8s linear infinite;
    filter: hue-rotate(0deg);
}

@keyframes chromatic {
    0% { filter: hue-rotate(0deg); }
    20% { filter: hue-rotate(72deg); }
    40% { filter: hue-rotate(144deg); }
    60% { filter: hue-rotate(216deg); }
    80% { filter: hue-rotate(288deg); }
    100% { filter: hue-rotate(360deg); }
}

#start-button img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    image-rendering: pixelated;
}
.taskbar-item {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    margin: 0 2px;
    height: 40px;
    background: #c0c0c0;
    border: 1px solid #ffffff;
    border-right-color: #808080;
    border-bottom-color: #808080;
    cursor: pointer;
    font-size: 12px;
}

.taskbar-item.active {
    border: 1px solid #808080;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
}

.taskbar-item img {
    width: 24px;
    height: 24px;
    margin-right: 6px;
}

#time {
    margin-left: auto;
    padding: 2px 5px;
    border: 1px solid #808080;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Windows */
.window {
    position: absolute;
    min-width: 200px;
    min-height: 150px;
    overflow: hidden;
    background: #c0c0c0;
    border: 1px solid #ffffff;
    border-right-color: #808080;
    border-bottom-color: #808080;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.window-titlebar {
    background: #000080;
    color: white;
    padding: 3px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    height: 22px;
}

.window-controls {
    display: flex;
    align-items: center;
    gap: 2px;
}

.window-controls button {
    width: 18px;
    height: 16px;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    font-family: 'Tahoma', sans-serif;
    font-size: 9px;
    font-weight: bold;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 2px;
}

.window-controls button:active {
    border: 1px solid #808080;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
    background: #b0b0b0;
}

.window-controls .close-button {
    font-size: 11px;
    line-height: 1;
    padding-bottom: 2px;
}

.window-controls .minimize-button {
    font-size: 9px;
    line-height: 1;
    padding-bottom: 4px;
}

.window-controls .close-button:hover {
    background: #ff4444;
    color: white;
}

.window-controls .maximize-button,
.window-controls .minimize-button {
    font-size: 9px;
    line-height: 1;
}

.window-content {
    padding: 10px;
}

.window-content img { /* Added to remove border from images within the window content */
    border: none;
}

/* Start Menu */
#start-menu {
    position: fixed;
    bottom: 44px;
    left: 2px;
    width: 190px;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #ffffff #404040 #404040 #ffffff;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    padding: 2px;
    z-index: 9999;
}

.start-menu-header {
    background: linear-gradient(to right, #000080, #1084d0);
    color: white;
    padding: 4px;
    display: flex;
    align-items: center;
    height: 32px;
    margin-bottom: 2px;
}

.start-menu-header img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.start-menu-header span {
    font-weight: bold;
    font-size: 13px;
}

.menu-item {
    padding: 4px 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 11px;
    position: relative;
    min-height: 32px;
    gap: 8px;
}

.menu-item:hover {
    background: #000080;
    color: white;
}

.menu-item img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #c0c0c0;
    border: 1px solid;
    border-color: #ffffff #404040 #404040 #ffffff;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    min-width: 140px;
    padding: 1px;
    display: none;
}

.menu-item:hover > .submenu {
    display: block;
}

.menu-separator {
    height: 1px;
    background: #808080;
    border-bottom: 1px solid #ffffff;
    margin: 3px 2px;
}

.hidden {
    display: none;
}

.menu-items {
    padding: 1px;
}


.menu-item:hover {
    background: #000080;
    color: white;
}

/* Explorer */

.explorer-toolbar {
    padding: 2px;
    border-bottom: 1px solid #808080;
    background: #c0c0c0;
}

.explorer-toolbar button {
    margin-right: 2px;
    padding: 2px 8px;
    background: #c0c0c0;
    border: 1px solid #ffffff;
    border-right-color: #808080;
    border-bottom-color: #808080;
    font-size: 11px;
}

.explorer-address {
    padding: 4px;
    background: #c0c0c0;
    border-bottom: 1px solid #808080;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
}

#current-path {
    background: #fff;
    border: inset 1px;
    padding: 1px 4px;
    flex: 1;
}

.explorer-content {
    padding: 5px;
}

.folder-item {
    display: flex;
    align-items: center;
    padding: 2px;
    cursor: pointer;
}

.folder-item img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

/* Calculator */
.calculator {
    padding: 8px;
    width: 180px;
    background: #c0c0c0;
    margin: 12px auto;
    box-shadow: inset 2px 2px 0px #ffffff, inset -2px -2px 0px #848484;
    border: 1px solid #404040;
}
.window[data-app-name="calculator"] {
    resize: none !important;
    width: 212px !important;
    height: 265px !important;
}

.window[data-app-name="calculator"] div[style*="cursor: se-resize"] {
    display: none;
}

.calc-display {
    width: 100%;
    height: 25px;
    margin-bottom: 8px;
    text-align: right;
    padding: 4px 8px;
    font-family: 'MS Sans Serif', sans-serif;
    font-size: 14px;
    background: #ffffff;
    border: inset 2px;
    color: #000;
}

.calc-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 4px;
}

.calc-btn:nth-last-child(-n+2) {
    grid-column: span 2;
}

.calc-btn.equals {
    grid-row: span 2;
    height: auto;
}

.calc-btn {
    padding: 2px;
    height: 28px;
    background: #d4d0c8;
    font-size: 12px;
    border: 2px solid #ffffff;
    border-right-color: #404040;
    border-bottom-color: #404040;
    font-weight: bold;
    margin: 1px;
    cursor: pointer;
    font-family: 'MS Sans Serif', sans-serif;
    font-size: 11px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calc-btn:active {
    border: 2px solid #808080;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
    background: #a0a0a0;
    transform: scale(0.95);
    transition: transform 0.1s;
}

.calc-btn.operator {
    background: #d0d0d0;
}

.calc-btn.equals {
    background: #000080;
    color: white;
}

.calc-btn.clear {
    background: #ff4444;
    color: white;
    font-weight: bold;
}

/* Context Menu */
.context-menu {
    position: fixed;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    min-width: 150px;
    z-index: 1000;
}

.context-menu .menu-item {
    padding: 4px 8px;
    display: flex;
    align-items: center;
}

.context-menu .menu-item:hover {
    background: #000080;
    color: white;
}

.context-menu .menu-item img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

/* My Computer Modern */
.mycomputer-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #f0f0f0;
    overflow: hidden;
}

.mycomputer-toolbar {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
    border-bottom: 1px solid #ccc;
}

.mycomputer-toolbar button {
    padding: 4px 12px;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 11px;
    border-radius: 2px;
}

.mycomputer-toolbar button:hover {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid #ccc;
}

.drive-item.modern {
    background: white;
    border-radius: 4px;
    padding: 12px;
    margin: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
}

.drive-item.modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-color: #0078d7;
    background: #f5f9ff;
}

.drive-item.modern .drive-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.drive-item.modern .drive-info {
    flex: 1;
}

.drive-item.modern .drive-name {
    font-size: 16px;
    font-weight: bold;
    color: #0078d7;
    margin-bottom: 8px;
}

.drive-item.modern .drive-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drive-type {
    color: #666;
    font-size: 14px;
}

.drive-space {
    color: #333;
    font-size: 14px;
}

.space-bar {
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4px;
}

.space-used {
    height: 100%;
    background: linear-gradient(to right, #0078d7, #00a2ff);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.mycomputer-statusbar {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 11px;
    gap: 8px;
}

.status-separator {
    color: #ccc;
}

.mycomputer-toolbar {
    display: flex;
    padding: 4px;
    border-bottom: 1px solid #808080;
    gap: 4px;
}

.mycomputer-toolbar button {
    padding: 4px 8px;
    background: #c0c0c0;
    border: 1px solid #ffffff;
    border-right-color: #808080;
    border-bottom-color: #808080;
    font-size: 11px;
    min-width: 60px;
}

.mycomputer-toolbar button:active {
    border-color: #808080;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
    padding: 5px 7px 3px 9px;
}

.mycomputer-content {
    flex: 1;
    padding: 8px;
    overflow: auto;
    background: #ffffff;
}

.drive-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    padding: 16px;
}

.drive-item {
    display: flex;
    align-items: center;
    padding: 8px;
    cursor: pointer;
    background: transparent;
    border: 1px dotted transparent;
    transition: background 0.1s;
}

.drive-item:hover {
    background: #000080;
    color: white;
    border: 1px dotted #ffffff;
}

.drive-item:active {
    background: #000070;
}

.drive-item.selected {
    background: #000080;
    color: white;
    border: 1px dotted #ffffff;
}
.drive-item img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    image-rendering: pixelated;
}

.drive-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.drive-name {
    font-weight: bold;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drive-details {
    font-size: 11px;
    color: #444;
}

.drive-item:hover .drive-details,
.drive-item.selected .drive-details {
    color: #ffffff;
}

.mycomputer-statusbar {
    height: 20px;
    border-top: 1px solid #808080;
    background: #c0c0c0;
    padding: 2px 4px;
    font-size: 11px;
    display: flex;
    align-items: center;
}


.explorer-content {
    display: flex;
    height: calc(100% - 28px);
    background: #fff;
    border-top: 1px solid #808080;
}

.explorer-sidebar {
    width: 220px;
    background: #404040;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-right: 2px solid #808080;
    position: relative;
}

.explorer-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
}

.explorer-sidebar .folder-item {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 2px;
    margin-bottom: 2px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.2s ease;
    position: relative;
    margin-bottom: 2px;
    border-radius: 2px;
}

.explorer-sidebar .folder-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(2px);
}

.explorer-sidebar .folder-item.active {
    background: rgba(0, 0, 128, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(4px);
}

.explorer-sidebar .folder-item img {
    width: 20px;
    height: 20px;
    filter: brightness(1.2) contrast(1.1);
    transition: transform 0.2s ease;
}

.explorer-sidebar .folder-item:hover img {
    transform: scale(1.1);
}

.explorer-sidebar .folder-item span {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}


.explorer-main {
    flex: 1;
    background: #fff;
    padding: 4px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.explorer-files {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    padding: 16px;
    gap: 16px;
    background: white;
    flex: 1;
}

.file-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.1s;
    min-width: 90px;
}

.file-item:active {
    background-color: rgba(0, 0, 0, 0.1);
}

.file-item img {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
    image-rendering: pixelated;
}

.file-item span {
    font-size: 11px;
    text-align: center;
    max-width: 85px;
    word-wrap: break-word;
    color: #333;
}

.file-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px;
    cursor: pointer;
    border: 1px dotted transparent;
    background: transparent;
    border-radius: 2px;
    width: 100%;
    height: 80px;
    justify-content: center;
}

.file-item:hover {
    border: 1px dotted #000;
    padding: 7px;
}
.file-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
    pointer-events: none;
}

.file-item span {
    font-size: 11px;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
}
.folder-item {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    cursor: pointer;
    border: 1px solid transparent;
}
.folder-item img {
    width: 32px;
    height: 32px;
    margin-right: 0px;
}

.mycomputer-menu {
    background: #c0c0c0;
    border-bottom: 1px solid #808080;
    padding: 2px 0;
}


.drive-item:hover .drive-details {
    color: #fff;
}

.window.active .window-titlebar {
    background: #000080;
    color: white;
}

.window:not(.active) .window-titlebar {
    background: #808080;
    color: #c0c0c0;
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #c0c0c0;
    border: 1px solid #ffffff;
    border-right-color: #808080;
    border-bottom-color: #808080;
    display: none;
}
.menu-item[data-submenu]:hover .submenu {
    display: block;
}
.menu-separator {
    height: 1px;
    background: #808080;
    border-bottom: 1px solid #ffffff;
    margin: 2px 0;
}

#start-menu {
    padding: 2px;
}

.menu-items {
    padding: 1px;
    border: 1px solid #808080;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
}
/* Notepad Menu */
.notepad-menu {
    height: 36px;
    position: relative;
    z-index: 10;
    background: #c0c0c0;
    border-bottom: 1px solid #808080;
    display: flex;
    align-items: center;
    padding: 0 4px;
}

.menu-bar {
    display: flex;
    height: 100%;
}

.menu-bar .menu-item {
    padding: 2px 8px;
    cursor: pointer;
    font-size: 12px;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    gap: 4px;
}

.menu-bar .menu-item:hover {
    background: #000080;
    color: white;
}

.menu-bar .menu-item img {
    width: 16px;
    height: 16px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #c0c0c0;
    border: 1px solid;
    border-color: #808080 #ffffff #ffffff #808080;
    min-width: 180px;
    z-index: 1000;
    padding: 1px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.dropdown-menu .menu-item {
    padding: 4px 16px 4px 8px;
    cursor: default;
    font-size: 12px;
    white-space: nowrap;
    min-height: 18px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-menu .menu-separator {
    height: 1px;
    margin: 2px 1px;
    background: #808080;
    border-bottom: 1px solid #ffffff;
}

.dropdown-menu .menu-item:hover {
    background: #000080;
    color: white;
}

/* Notepad Text Area */
.notepad-textarea {
    width: calc(100% - 4px);
    height: calc(100% - 30px);
    resize: none;
    border: inset 2px;
    padding: 10px;
    margin: 2px;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 14px;
    background: white;
    outline: none;
    line-height: 1.6;
    letter-spacing: 0.5px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto;
    transition: background-color 0.3s, color 0.3s;
}

.notepad-textarea:focus {
    background-color: #fffff0;
}

/* Status Bar */
.notepad-statusbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #c0c0c0;
    border-top: 1px solid #808080;
    display: flex;
    align-items: center;
    padding: 0 4px;
    font-size: 12px;
    color: #000;
}

.notepad-statusbar .status-item {
    margin-right: 12px;
}

/* Themes */
.notepad-theme-light {
    background-color: #ffffff;
    color: #000000;
}

.notepad-theme-dark {
    background-color: #1e1e1e;
    color: #ffffff;
}

.notepad-theme-dark .notepad-textarea {
    background-color: #2d2d2d;
    color: #ffffff;
    border-color: #444;
}

.notepad-theme-dark .notepad-statusbar {
    background-color: #333;
    color: #fff;
    border-top-color: #444;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dropdown-menu {
    animation: fadeIn 0.2s ease-in-out;
}
/* Animations */
@keyframes particle {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(var(--x), var(--y));
        opacity: 0;
    }
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 0, 0.5);
    pointer-events: none;
    animation: particle 3s infinite linear;
}

.disco-mode {
    animation: discoBackground 0.5s infinite;
}

.disco-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    pointer-events: none;
    animation: discoParticle 2s infinite linear;
    z-index: 9999;
}

@keyframes discoBackground {
    0% { background: #ff0000; }
    33% { background: #00ff00; }
    66% { background: #0000ff; }
    100% { background: #ff0000; }
}

@keyframes discoParticle {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--moveX), var(--moveY)) rotate(360deg);
        opacity: 0;
    }
}
.red-particle {
    width: 4px;
    height: 4px;
    background: rgba(255,0, 0, 0.6);
}
.gray-particle {
    width: 4px;
    height: 4px;
    background: rgba(64, 64, 64, 0.7);
}

.window-content {
    position: relative;
    height: calc(100% - 18px);
    padding: 0;
}

.save-dialog {
    padding: 10px;
    font-family: 'MS Sans Serif', sans-serif;
    font-size: 12px;
    width: 300px;
}

.save-dialog-content {
    position: relative;
    padding: 10px;
}

.save-input-container {
    margin: 15px 0;
}

.win95-input {
    width: 100%;
    padding: 3px 5px;
    font-family: 'MS Sans Serif', sans-serif;
    font-size: 12px;
    border: inset 2px;
    background: white;
}

.save-dialog-buttons {
    text-align: center;
    margin-top: 20px;
}

.win95-button {
    min-width: 75px;
    padding: 4px 10px;
    margin: 0 5px;
    background: #c0c0c0;
    border: 2px solid #ffffff;
    border-right-color: #808080;
    border-bottom-color: #808080;
    font-family: 'MS Sans Serif', sans-serif;
    font-size: 11px;
    color: black;
}

.win95-button:active {
    border: 2px solid #808080;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Run Dialog */
.run-dialog {
    padding: 10px;
    font-family: 'MS Sans Serif', sans-serif;
    font-size: 11px;
    background: #c0c0c0;
    height: 100%;
}

.run-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.run-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.run-input-container {
    display: flex;
    align-items: center;
    gap: 6px;
}

.run-input-container input {
    flex: 1;
    padding: 3px 5px;
    border: inset 2px;
    background: white;
}

.run-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
}

.run-buttons button {
    min-width: 70px;
    padding: 4px 8px;
}