#cnw-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

#cnw-icon {
    width: 60px;
    height: 60px;
    background: #080d56;
    color: #F4F3F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    position: relative;
}

#cnw-icon::before {
    content: "🔔"; /* Campanella */
    font-size: 28px;
}

#cnw-badge {
    position: absolute;
    top: 2px; /* Posiziona il badge più in alto */
    right: 2px; /* Posiziona il badge più a sinistra */
    background: red;
    color: white;
    font-size: 14px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}




#cnw-sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: left 0.3s;
    z-index: 10000;
    padding: 20px;
    overflow-y: auto; /* Abilita lo scroll */
    max-height: 100vh; /* Imposta l'altezza massima */
}

#cnw-sidebar.open {
    left: 0;
}

#cnw-header {
    display: flex;
    justify-content: space-between;
    align-items: left;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

#cnw-close {
    cursor: pointer;
    font-size: 16px;
    color: #080d56;
}

#cnw-content {
    font-size: 14px;
    padding-top: 10px;
    /* allinea a sinistra il testo */
    text-align: left;
}

.cnw-news-item {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.cnw-news-item h3 {
    font-size: 16px; /* Riduci la dimensione del titolo */
    font-weight: bold; /* Mantiene il testo leggibile */
    margin-bottom: 5px; /* Riduce lo spazio tra il titolo e il testo */
    color: #080d56; /* Cambia il colore del titolo */
    text-align: left; /* Allinea il titolo a sinistra */
}


.cnw-news-item:last-child {
    border-bottom: none;
}

.cnw-news-date {
    font-size: 12px;
    color: #666;
}

#cnw-loading {
    text-align: center;
    font-size: 14px;
    display: none;
}

#title {
    font-size: 18px;
    font-weight: bold;
    color: #080d56;
}

