/* ===============================
   iDONTByTE — Global Stylesheet
   =============================== */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    user-select: none;
}

/* Desktop Icons */
.desktop-icon {
    position: absolute;
    width: 80px;
    text-align: center;
    color: white;
    cursor: pointer;
}

.desktop-icon img {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 0 4px black);
}

/* Windows */
.window {
    position: absolute;
    background: rgba(20,20,20,0.85);
    border: 2px solid #00ffff;
    border-radius: 6px;
    box-shadow: 0 0 20px black;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.window-titlebar {
    background: #00ffff;
    padding: 6px;
    display: flex;
    justify-content: space-between;
    cursor: grab;
    color: black;
    font-weight: bold;
}

.window-controls span {
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
}

.window-content {
    flex-grow: 1;
    background: #111;
    overflow: auto;
}

/* Taskbar */
#taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 42px;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-top: 2px solid #00ffff;
}

#start-btn {
    background: #00ffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 10px;
}

#taskbar-apps {
    display: flex;
    gap: 8px;
    flex-grow: 1;
}

.taskbar-icon {
    width: 32px;
    height: 32px;
    cursor: pointer;
}

#taskbar-clock {
    color: white;
    font-size: 14px;
    margin-left: auto;
    padding-right: 10px;
}

/* Start Menu */
#start-menu {
    position: fixed;
    bottom: 42px;
    left: 10px;
    width: 260px;
    background: rgba(0,0,0,0.85);
    border: 2px solid #00ffff;
    border-radius: 6px;
    padding: 10px;
    display: none;
    color: white;
}

/* Notification Shade */
#notif-shade {
    position: fixed;
    top: -300px;
    left: 0;
    right: 0;
    height: 300px;
    background: rgba(0,0,0,0.85);
    border-bottom: 2px solid #00ffff;
    color: white;
    padding: 20px;
    transition: top 0.3s ease;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #00ffff;
    border-radius: 6px;
}