﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(to bottom, #1a1a1a 0%, #141414 50%, #0f0f0f 100%);
}

.desktop-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 10px;
}

.desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: transparent;
    border: none;
    cursor: pointer;
    user-select: none;
}

    .desktop-icon .icon {
        font-size: 2.5rem;
        margin-bottom: 0.25rem;
    }

    .desktop-icon span {
        font-size: 0.75rem;
        text-align: center;
        color: #fff;
        text-shadow: 0 1px 2px rgb(0, 0, 0);
    }

    .desktop-icon:hover {
        background: rgba(0,120,215,0.15);
        outline: 1px solid rgba(0,120,215,0.4);
        border-radius: 5px;
    }
