﻿.text-secondary {
    color: #e8481a !important;
}

.gridview-wrapper {
    padding-top: 10px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Media query per schermi di dimensioni medie e grandi */
@media (min-width: 768px) {
    .gridview-wrapper {
        padding-left: 10% !important;
        padding-right: 10% !important;
    }
}
/* Stili per il widget WhatsApp */
.whatsapp-widget {
    position: fixed;
    bottom: 20px; /* Spaziatura dal fondo */
    right: 20px; /* Spaziatura dal lato destro */
    z-index: 1000; /* Posiziona l'elemento in primo piano */
}

.whatsapp-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Colore verde WhatsApp */
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .whatsapp-widget a:hover {
        background-color: #20c35a; /* Effetto hover */
    }

    .whatsapp-widget a img {
        width: 35px;
        height: 35px;
    }
