﻿
/***************************************************/
/* OVERLAY                                         */
/***************************************************/
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    display: none;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

/***************************************************/
/* SCROOL TO TOP                                   */
/***************************************************/
#scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: rgb(255, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    /* Quando visibile */
    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    /* Hover effect */
    #scroll-top:hover {
        background: rgb(255, 0, 0);
        color: #ffffff;
    }
