
    body{
        background-color: #fffefe!important;
    }
    .card {
        background-color: #1b2023e0; 
        color: #ffffff;
        border: none;
        transition: transform 0.3s ease; 
        border-radius: 1.5rem;
    }

    .card:hover {
        transform: scale(1.05); 
    }

    .card-body h5 {
        color: #ffffff; 
    }

    .card-body p {
        color: #d3d3d3; 
    }
    /* immagine fissa */
    .card img {
        width: 100%; 
        height: 120px; 
        object-fit: cover; 
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    
    #aziende-container {
        margin-top: 50px;
        padding-left: 20px;
        padding-right: 28px; /* 20px originali + 8px della scrollbar */
        padding-bottom: 20px;
        border-radius: 8px;
        height: 520px;
        overflow-y: overlay; 
        scrollbar-width: 1px; 
    }
    
    #aziende-container:hover::-webkit-scrollbar {
        width: 8px;
    }
    
    
    #aziende-container::-webkit-scrollbar {
        width: 0px; 
    }
    
    
    #aziende-container:hover::-webkit-scrollbar {
        width: 8px;
    }
    
    #aziende-container::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 10px;
    }
    
    #aziende-container::-webkit-scrollbar-thumb:hover {
        background-color: #555;
    }