/* GENERAL */
body {
    margin: 0;
    font-family: "Press Start 2P", monospace;
    background: #fffafb;
    background-image: 
        linear-gradient(#ffd3d3 1px, transparent 1px),
        linear-gradient(90deg, #ffd3d3 1px, transparent 1px);
    background-size: 40px 40px;
}

/* HEADER */
.topbar {
    height: 50px;
    background: #ffb6b6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    border-bottom: 2px solid #ff8b8b;
}

.topbar nav a {
    color: #000;
    margin-left: 20px;
    text-decoration: none;
}

/* LEFT ICON PANEL */
.icon-panel {
    position: absolute;
    top: 70px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.icon {
    text-align: center;
}

.icon img {
    width: 55px;
    image-rendering: crisp-edges;
    display: block;
    margin: 0 auto;
}

/* LOGO */
.logo {
    text-align: center;
    font-size: 60px;
    color: #ff4f4f;
    margin-top: 30px;
}

/* WINDOWS (POPUPS) */
.window {
    background: white;
    border: 3px solid #ff6c6c;
    padding: 10px;
    width: 300px;
    position: absolute;
}

.title-bar {
    background: #ff8f8f;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.window p {
    font-size: 12px;
    padding: 10px;
}

/* WINDOW POSITIONS */
.welcome {
    top: 200px;
    left: 300px;
}

.open-file {
    top: 150px;
    right: 200px;
}

.loading {
    top: 350px;
    left: 450px;
}

/* TASKBAR */
.taskbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: #ffbdbd;
    border-top: 2px solid #ff8f8f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.taskbar img {
    width: 40px;
    image-rendering: crisp-edges;
}

.task-icons {
    display: flex;
    gap: 20px;
}

/* CLOCK */
.clock {
    text-align: right;
    font-size: 12px;
}
