body {
    margin: 0;
    overflow: hidden;
    font-family: sans-serif;
    color: white;
    text-shadow: 1px 1px 2px black;
}

#desktop {
    width: 100vw;
    height: 100vh;
    background-image: url('desktop_background.png'); /* Using the generated background image */
    background-size: cover;
    background-position: center;
    position: relative;
}

#icon-area {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 80px; /* Adjust size as needed */
    text-align: center;
    user-select: none; /* Prevent text selection */
}

.desktop-icon img {
    width: 50px; /* Adjust icon size */
    height: 50px; /* Adjust icon size */
    image-rendering: pixelated; /* Helps with simple icons */
    margin-bottom: 5px;
}

.desktop-icon span {
    font-size: 0.8em;
    word-break: break-word; /* Prevent long names from overflowing */
}

.desktop-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

