.badge {
    position: absolute;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background-color: red;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
    white-space: nowrap;
}

/* Badge numerico: adattivo */
.badge-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: cornflowerblue;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 0 6px;
    height: 20px;
    min-width: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
    white-space: nowrap;
}

/* Badge simbolico: fisso e rotondo */
.badge-symbol {
    position: absolute;
    bottom: -6px;
    right: -6px;
    background-color: lightpink;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}


.desktop-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 16px;
    overflow-x: auto;
}

.desktop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 48px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
}

.desktop-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.60);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

    .desktop-icon:hover {
        transform: scale(1.05);
        background-color: rgba(255, 255, 255, 0.80);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.desktop-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.desktop-icon-label {
    margin-top: 4px;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    white-space: nowrap;
    color: white;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.8);
}

/*
.desktop-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 16px;
    overflow-x: auto;
}

.desktop-grid {
    display: grid;
    width: 100%;
    justify-content: center;
}


.desktop-icon {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

    .desktop-icon:hover {
        transform: scale(1.05);
        background-color: rgba(255, 255, 255, 0.80) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
    }*/

/*.badge {
    position: absolute;
    font-size: 12px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
    white-space: nowrap;
}*/
/*
.badge-count {
    top: -6px;
    right: -6px;
    padding: 0 6px;
    height: 20px;
    min-width: 20px;
    border-radius: 10px;
}*/

/*.badge-symbol {
    bottom: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
}*/