* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tahoma', 'Segoe UI', sans-serif;
}

body {
    background: #245edc url('download.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    overflow: hidden;
}

.desktop {
    height: 100vh;
    position: relative;
    padding: 20px;
}

/* Desktop Icons */
.desktop-icon {
    width: 80px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 5px;
    margin: 10px;
    color: white;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.desktop-icon img {
    width: 48px;
    height: 48px;
    margin-bottom: 5px;
}

.desktop-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

/* Windows */
.window {
    position: absolute;
    background: #ece9d8;
    border: 1px solid #0054e3;
    border-radius: 8px 8px 0 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    min-width: 300px;
    min-height: 200px;
    display: none;
}

.window.active {
    display: block;
}

.window-header {
    background: linear-gradient(to right, #0058e6, #3f9cff);
    color: white;
    padding: 5px 10px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: move;
}

.window-controls {
    display: flex;
    gap: 5px;
}

.window-controls button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.window-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.window-content {
    padding: 20px;
    height: calc(100% - 35px);
    overflow-y: auto;
}

/* Taskbar */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, #c0c0c0, #a0a0a0);
    display: flex;
    align-items: center;
    padding: 0 5px;
    border-top: 2px solid #808080;
    box-shadow: inset 0 1px 0 #ffffff, inset 0 -1px 0 #000000;
}

.start-button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 15px;
    height: 100%;
    color: black;
    cursor: pointer;
    background: linear-gradient(to bottom, #e0e0e0, #c0c0c0);
    border: 1px solid #808080;
    box-shadow: inset 1px 1px 0 #ffffff, inset -1px -1px 0 #000000;
}

.start-button:hover {
    background: linear-gradient(to bottom, #d0d0d0, #b0b0b0);
}

.start-button img {
    width: 20px;
    height: 20px;
}

/* Taskbar Icons */
.taskbar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    cursor: pointer;
    border-right: 1px solid #808080;
}

.taskbar-icon:last-child {
    border-right: none;
}

.taskbar-icon img {
    width: 20px;
    height: 20px;
}

.taskbar-items {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
}

.system-tray {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    color: black;
}

/* Window States */
.window.minimized {
    display: none;
}

.window.maximized {
    width: 100% !important;
    height: calc(100vh - 30px) !important;
    top: 0 !important;
    left: 0 !important;
    border-radius: 0;
}

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

.highlight-button {
    background-color: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 10px;
}

.highlight-button:hover {
    background-color: darkred;
} 