html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.dt-button {
    border: 0;
    background-color:white;
}

.dt-buttons {
    display: inline-flex;
    padding: 10px;
}

.logo {
    width: 100%;
    height: 40px;
}

.totali {
    text-align:right;
    font-size:large;
    padding:20px;
}

.iframe-index{
    width:100%;
    height:1200px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .header h1 {
        font-size: 1.5rem;
    }

    .header .unread-count {
        font-size: 0.9rem;
    }

.article {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 5px;
}

    .article img {
        width: 80px;
        height: 80px;
        margin-right: 15px;
        object-fit: cover;
    }

.article-content {
    max-width: calc(100% - 100px);
}

.article-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.article-source {
    font-size: 0.9rem;
}

#backToTopBtn {
    display: none; /* Nascosto inizialmente */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99; /* Mettilo in primo piano */
    width: 50px; /* Larghezza del cerchio */
    height: 50px; /* Altezza del cerchio */
    background-color: #007bff; /* Colore di sfondo */
    color: white;
    border: none;
    font-size: 24px; /* Dimensione dell'icona */
    border-radius: 50%; /* Rende il pulsante un cerchio perfetto */
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Ombra per un effetto migliore */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7; /* Opacità iniziale */
    transition: opacity 0.3s ease; /* Transizione fluida per l'opacità */
}

    #backToTopBtn:hover {
        background-color: #0056b3; /* Colore più scuro al passaggio del mouse */
    }

    #backToTopBtn i {
        margin: 0; /* Rimuovi il margine dell'icona */
    }

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #007bff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin-left: 10px; /* Distanza dal pulsante "Mostra altri" */
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.reportFavicon {
    width:18px; 
    height:18px; 
    margin-bottom:4px
}

.reportTitolo {
    width:100%;
    max-width:100%;
}

.form-label {
    margin-bottom: 0.5rem;
}

    .form-label i {
        margin-right: 0.25rem;
    }

.card {
    border: none;
}