body {
    font-family: Arial, sans-serif;
    background-image: url('/1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    height: 100vh;
    overflow: hidden;
}

.folder-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: absolute;
    cursor: pointer; /* <-- Make it clear the icon is interactive */
}

.folder-icon img {
    width: 80px;
    height: 80px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Highlight the icon on hover */
.folder-icon:hover img {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.folder-label {
    color: white;
    margin-top: 5px; /* Space between icon and text */
}

/* Positioning each icon container */
#openPS {
    top: 120px;
    left: 100px;
}

#openGithub {
    top: 240px;
    left: 100px;
}

#recycle {
    top: 360px;
    left: 100px;
}

#notepad {
    top: 480px;
    left: 100px;
}

#blog {
    top: 600px;
    left: 100px;
}

#nonprofit {
    top: 720px;
    left: 100px;
}

#minesweeper {
    top: 120px;
    left: 220px;
}

#payloads {
    top: 240px;
    left: 220px;
}

#sudotube {
    top: 360px;
    left: 220px;
}

#tools {
    top: 480px;
    left: 220px;
}

#malcore {
    top: 600px;
    left: 220px;
}

.powershell-window {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 700px;
    height: 400px;
    background: black;
    color: lime;
    font-family: 'Consolas', 'Courier New', monospace;
    border: 2px solid #444;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    resize: both;
    overflow: hidden;
}

.title-bar {
    background-color: #007ACC;
    padding: 10px;
    font-weight: bold;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: move;
}

.close-btn {
    cursor: pointer;
    background: red;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.console {
    flex-grow: 1;
    background-color: black;
    color: lime;
    padding: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 1.1em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: pre-wrap;
}

.input-area {
    display: flex;
    align-items: center;
    background: black;
    padding: 5px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.prompt {
    color: cyan;
    margin-right: 5px;
    font-size: 1.1em;
    white-space: pre;
}

input[type="text"] {
    flex-grow: 1;
    padding: 5px;
    background: black;
    color: lime;
    border: none;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 1.1em;
    caret-color: lime;
    overflow: hidden;
}

input[type="text"]:focus {
    outline: none;
}

.powershell-window::-webkit-resizer {
    display: none;
}

.powershell-window::-webkit-scrollbar {
    display: none;
}

/* Taskbar Styling */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #222;
    display: flex;
    align-items: center;
    padding: 0 10px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.5);
}

.start-button {
    background: #007ACC;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.start-button:hover {
    background: #005EA6;
}

.taskbar-icons {
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.task-icon {
    color: white;
    margin-left: 10px;
    padding: 5px 10px;
    background: #333;
    border-radius: 3px;
    display: none; /* Shown when apps are opened */
}

/* Start Menu Styling */
.start-menu {
    position: fixed;
    bottom: 50px;
    left: 10px;
    width: 150px;
    background: #333;
    border: 1px solid #444;
    padding: 10px;
    display: none;
    flex-direction: column;
}

.start-menu button {
    background: #007ACC;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.start-menu button:hover {
    background: #005EA6;
}
