/* Desktop Icons Styles */
.desktop-icons {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    text-decoration: none;
    color: var(--color-black);
    cursor: pointer;
    padding: 8px;
    transition: background-color 0.2s;
    background: none;
    border: none;
    font-family: inherit;
}

.desktop-icon:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.icon-image {
    width: 48px;
    height: 48px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: crisp-edges;
    margin-bottom: 8px;
    display: block;
}

.desktop-icon span {
    font-size: 14px;
    text-align: center;
    justify-content: center;
    word-wrap: break-word;
    background-color: var(--color-accent);
    color: white;
    padding: 2px 8px;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    #content-area {
        top: 0px;
        left: 54px;
        right: 4px;
        padding: 15px;
    }

    .desktop-icons {
        top: 10px;
        left: 15px;
        gap: 6px;
    }

    .desktop-icon {
        width: 60px;
        padding: 6px 4px;
    }

    .icon-image {
        width: 36px;
        height: 36px;
        margin-bottom: 6px;
    }

    .desktop-icon span {
        font-size: 12px;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .desktop-icons {
        top: 10px;
        left: 10px;
        gap: 4px;
    }

    .desktop-icon {
        width: 50px;
        padding: 4px 2px;
    }

    .icon-image {
        width: 32px;
        height: 32px;
        margin-bottom: 4px;
    }

    .desktop-icon span {
        font-size: 11px;
        padding: 1px 4px;
    }
}
