:root {
    --body-bg-color: #e5f4f9;
    --body-color-light: #8b939c;
    --body-font: "Roboto", sans-serif;
    --page-bg-color: #f2f5f7;
    --body-color: #3d4954;
    --border-color: #b8bec3;
    --placeholder: #ccd0d2;
}

/* Header */
/* .site-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--body-color-light);
}

.header-title img {
    height: 100px;
}

.search-input:focus {
    outline: none;
    border-color: #67d4ea;
    box-shadow: 0 0 0 2px rgba(103, 212, 234, 0.2);
} */

/* Carousel Section */
.carousel-section {
    padding: 20px 0 0 0;
    overflow: hidden;
}

.carousel-section .carousel-inner {
    overflow: visible;
}

.book-slide {
    display: flex;
    align-items: stretch;
    min-height: 320px;
    border-radius: 15px;
    padding: 30px;
    margin: 20px;
}

/* Book Cover Container - 3D Opening Effect */
.book-cover-container {
    position: relative;
    width: 180px;
    min-width: 180px;
    height: 260px;
    transform-style: preserve-3d;
    perspective: 800px;
    flex-shrink: 0;
}

.book-cover-container .page {
    position: absolute;
    inset: 0;
    transform-origin: 0% 50% 0;
    background-color: #fff;
    backface-visibility: hidden;
    border-radius: 0 5px 5px 0;
    overflow: hidden;
}

.book-cover-container .page img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) sepia(0.3);
}

.book-cover-container .cover {
    position: relative;
    width: 100%;
    height: 100%;
    transform-origin: 0% 50% 0;
    background-color: #000;
    backface-visibility: hidden;
    transform: rotateY(0deg) translateZ(0px);
    transition: transform 0.4s ease-in-out;
    border-radius: 0 5px 5px 0;
    overflow: hidden;
    box-shadow: -2px 6px 19px 0px rgba(0, 0, 0, 0.4);
}

.book-cover-container .cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-cover-container .cover .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 33%);
    opacity: 0;
    transition: opacity 0.3s 0.1s;
}

.book-cover-container .page1 {
    transform: translate3d(-0.34202px, 0px, -0.93969px) rotateY(20deg);
    transition: transform 0.4s ease-in-out;
}

.book-cover-container .page2 {
    transform: translate3d(-1px, 0px, -1.73205px) rotateY(30deg);
    transition: transform 0.4s ease-in-out;
}

.book-cover-container .page3 {
    transform: translate3d(-1.92836px, 0px, -2.29813px) rotateY(40deg);
    transition: transform 0.4s ease-in-out;
}

/* Hover Effects */
.book-cover-container:hover .cover {
    transform: translate3d(0, 0, 0) rotateY(-40deg);
}

.book-cover-container:hover .cover .overlay {
    opacity: 1;
}

.book-cover-container:hover .page1 {
    transform: translate3d(-0.34202px, 0px, -0.93969px) rotateY(-34deg);
}

.book-cover-container:hover .page2 {
    transform: translate3d(-1px, 0px, -1.73205px) rotateY(-27deg);
}

.book-cover-container:hover .page3 {
    transform: translate3d(-1.92836px, 0px, -2.29813px) rotateY(-15deg);
}

/* Book Content */
.book-content {
    padding: 0 25px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.book-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.book-author {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.book-rating {
    margin-bottom: 10px;
}

.book-rating .fa-star {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.book-rating .fa-star.active {
    color: #ffd700;
}

.book-voters {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-left: 10px;
}

.book-sum {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.book-see-btn {
    background-color: #fff;
    color: inherit;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: transform 0.2s, box-shadow 0.2s;
}

.book-see-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

/* Sidebar */
.sidebar {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--body-color);
}

.author-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.author-name {
    font-size: 0.9rem;
    color: var(--body-color);
}

.year-book-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.year-book-img {
    width: 50px;
    height: 70px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.year-book-content {
    flex: 1;
}

.year-book-title {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.year-book-author {
    font-size: 0.8rem;
    color: var(--body-color-light);
}

/* Genre Menu */
.genre-menu {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.genre-title {
    font-weight: 600;
    font-size: 1rem;
}

.genre-links a {
    color: var(--body-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 20px;
    transition: all 0.2s;
}

.genre-links a:hover,
.genre-links a.active {
    background-color: #67d4ea;
    color: #fff;
}

/* Book Cards Grid */
.book-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.book-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.book-card-header {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.book-card-img {
    width: 100px;
    height: 140px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    margin-top: -40px;
}

.book-card-info {
    padding-left: 15px;
    flex: 1;
}

.book-card-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.book-card-author {
    font-size: 0.85rem;
    color: var(--body-color-light);
    margin-bottom: 8px;
}

.book-card-rating .fa-star {
    color: #ddd;
    font-size: 0.8rem;
}

.book-card-rating .fa-star.active {
    color: #ffc107;
}

.book-card-body {
    padding: 15px 20px;
}

.book-card-sum {
    font-size: 0.85rem;
    color: var(--body-color-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.book-card-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
}

.like-profiles {
    display: flex;
}

.like-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    object-fit: cover;
}

.like-img:first-child {
    margin-left: 0;
}

.like-text {
    font-size: 0.8rem;
    color: var(--body-color-light);
    margin-left: 10px;
}

.like-text span {
    font-weight: 600;
    color: var(--body-color);
}

/* Responsive */
@media (max-width: 991px) {
    .sidebar {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .book-slide {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .book-cover-container {
        margin-bottom: 20px;
    }

    .book-content {
        padding: 15px 0;
    }

    .book-see-btn {
        margin: 0 auto;
    }

    .genre-links {
        flex-wrap: wrap;
        gap: 5px;
    }

    .book-cards {
        grid-template-columns: 1fr;
    }
/* 
    .search-input {
        margin-top: 10px;
    } */
}

@media (max-width: 575px) {
    .book-cover-container {
        width: 150px;
        min-width: 150px;
        height: 220px;
    }

    .book-title {
        font-size: 1.2rem;
    }

    .book-sum {
        font-size: 0.85rem;
    }
}

/* Effetto News Card 3D Pop-out */
.news-card {
    margin-top: 30px; /* Spazio per far uscire l'immagine */
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.news-img-wrapper {
    position: relative;
    width: 100px;
    height: 140px;
    flex-shrink: 0;
    z-index: 2; /* Sopra la card */
}

.news-pop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3); /* Ombra più profonda per l'effetto 3D */
    position: absolute;
    top: -50px; /* Esce fuori dal bordo superiore */
    left: 0;
    transition: transform 0.3s ease;
}

.news-card:hover .news-pop-img {
    transform: translateY(-5px) scale(1.05); /* Lieve animazione al passaggio del mouse */
}

/* Titolo su due righe poi puntini */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

/* Bottone iconico nel footer */
.btn-read-more {
    width: 32px;
    height: 32px;
    background-color: var(--body-bg-color);
    color: #67d4ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-read-more:hover {
    background-color: #67d4ea;
    color: #fff;
    transform: translateX(3px);
}

/* Correzione spazi info */
.news-card .book-card-info {
    padding-left: 15px;
    margin-top: 10px; /* Spazio per compensare l'immagine alzata */
}

/* Rimuove il blocco all'immagine che esce */
.news-card.overflow-visible {
    overflow: visible !important;
    margin-top: 40px; 
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Container immagine */
.news-img-wrapper {
    position: relative;
    width: 90px;
    height: 120px;
    flex-shrink: 0;
    z-index: 10;
}

.news-pop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    top: -55px; /* Esce verso l'alto */
    left: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

/* Hover: l'immagine si alza ancora un po' */
.news-card:hover .news-pop-img {
    transform: translateY(-8px) scale(1.03);
}

/* Sommario ultra-compatto */
.news-short-sum {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 8px;
    line-height: 1.2;
}

/* Badge nel footer */
.category-badges .badge {
    font-weight: 500;
    font-size: 0.7rem;
    padding: 5px 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bottone minimale */
.btn-read-more {
    width: 35px;
    height: 35px;
    background-color: #f8f9fa;
    color: #67d4ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background-color: #67d4ea;
    color: white;
}




.book-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 60px 25px; /* Aumentato il gap verticale per lasciare spazio all'immagine pop-out */
    padding-top: 40px;
}

/* Card principale */
.news-card-3d {
    background: #fff;
    border-radius: 15px;
    position: relative;
    padding: 80px 15px 15px 15px; /* Padding top generoso per l'immagine */
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card-3d:hover {
    transform: translateY(-5px);
}

/* Immagine Pop-out */
.news-img-container {
    position: absolute;
    top: -30px;
    left: 15px;
    right: 15px;
    height: 160px;
}

.news-img-pop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.news-card-3d:hover .news-img-pop {
    transform: scale(1.02) translateY(-5px);
}

/* Testo */
/* Griglia */
.book-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 70px 25px; /* Spazio verticale aumentato per evitare sovrapposizioni tra righe */
    padding-top: 50px;
}

/* Card */
.news-card-3d {
    background: #fff;
    border-radius: 15px;
    position: relative;
    /* Il padding top deve essere almeno pari all'altezza visibile dell'immagine */
    padding: 140px 15px 15px 15px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
    overflow: visible !important; /* Fondamentale per far uscire l'immagine */
}

/* Container Immagine */
.news-img-container {
    position: absolute;
    top: -40px; /* Alza l'immagine fuori dalla card */
    left: 15px;
    right: 15px;
    height: 160px; /* Altezza fissa dell'immagine */
}

.news-img-pop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

/* Blocco Testo */
.news-text-block {
    margin-top: 10px; /* Ulteriore distacco dall'area immagine */
    position: relative;
    z-index: 10;
}

.news-title-3d {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--body-color);
    line-height: 1.3;
    margin-bottom: 10px;
    /* Assicura che il titolo non venga tagliato ma resti visibile */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6rem; /* Mantiene l'altezza fissa per uniformità */
}

.news-excerpt-3d {
    font-size: 0.85rem;
    color: var(--body-color-light);
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Footer */
.news-card-footer-3d {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f8f9fa;
}

/* Badge e Bottoni */
.category-badges .badge {
    font-size: 0.65rem;
    padding: 5px 10px;
}

.btn-arrow-3d {
    width: 35px;
    height: 35px;
    background: #eef9fb;
    color: #67d4ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Card Autore Stile Moderno */
.author-birthday-card-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.author-birthday-card-new {
    display: flex;
    height: 320px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.author-image-side {
    width: 40%;
    position: relative;
    overflow: hidden;
    /* La linea obliqua */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.author-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info-side {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.author-badge {
    color: #666;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.author-quote {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
}

.author-signature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name-text {
    font-size: 0.9rem;
    color: #888;
}

.author-arrow {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Effetti Hover */
.author-birthday-card-link:hover .author-birthday-card-new {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.author-birthday-card-link:hover .author-arrow {
    background: #333;
    color: white;
    transform: translateX(8px); /* La freccia si sposta a destra */
}

/* Fix Immagine Pubblicità */
.ad-card-v2 {
    border-radius: 20px;
}
.ad-img-v2 {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Container che esce dai margini del parent se necessario */
.top-ten-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.top-ten-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 60px; /* Spazio aumentato per non tagliare il numero */
    padding: 0 100px 70px 100px;
    counter-reset: top-ten-counter;
    scrollbar-width: none;
}

.top-ten-carousel::-webkit-scrollbar { display: none; }

/* Singolo elemento */
.top-ten-item {
    position: relative;
    flex: 0 0 auto;
    width: 200px; 
    height: 300px;
    display: flex;
    align-items: flex-end;
    perspective: 1000px; /* Per l'effetto 3D */
    text-decoration: none;
}

/* Il Numero Gigante con bordo (Netflix style) */
.number-container::before {
    counter-increment: top-ten-counter;
    content: counter(top-ten-counter);
    position: absolute;
    left: -40px;
    bottom: -30px;
    font-size: 240px;
    font-weight: 900;
    line-height: 0.8;
    color: #121212;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Immagine con effetto libro all'hover */
.image-container {
    position: relative;
    z-index: 2;
    width: 160px;
    height: 240px;
    margin-left: auto;
    transform-origin: left;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px 4px 4px 2px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.5);
}

/* EFFETTO HOVER: Si apre come un libro */
.top-ten-item:hover .image-container {
    transform: rotateY(-25deg) scale(1.1);
    box-shadow: 20px 20px 30px rgba(0,0,0,0.7);
}

.top-ten-item:hover .number-container::before {
    transform: scale(0.9);
    filter: brightness(1.5);
}

/* Pulsanti Tondi sopra il carosello */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.2s;
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-prev:hover, .carousel-next:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

/* .site-footer {
    background-color: #0f0f0f;
    color: #ffffff;
    padding: 60px 10% 20px 10%;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 0.7;
}

.footer-branding {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.footer-socials a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    font-size: 0.75rem;
    color: #888;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .footer-branding {
        flex-direction: column;
        gap: 20px;
    }
} */

/* Container per la pubblicità */
.ad-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    width: 100%;
    margin-bottom: 25px;
}


/* Specifica per la sesta posizione nelle news */
.news-card-3d.item {
    padding: 0;
}

.news-card-3d.item:hover {
    transform: none;
}


/* Pulsante Dona nel Footer */
/* .footer-donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffc439; 
    color: #003087 !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-donate-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.footer-donate-btn:hover {
    background-color: #f4b400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 196, 57, 0.3);
    color: #003087 !important;
} */

/* Allineamento colonna footer (opzionale se serve centrare) */
/* .footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
} */

/* Il contenitore deve essere relativo */
/* .search-group {
    position: relative;
    width: 100%;
} */

/* L'input deve avere spazio a destra per non scrivere sopra l'icona */
/* .search-input {
    width: 100%;
    padding-right: 45px !important;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #ddd;
    padding-left: 15px;
    outline: none;
} */

/* .mic-btn-v2 {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: #f0f2f5; 
    border: none !important;   
    border-radius: 50%;     
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    padding: 0;
    -webkit-appearance: none;  
}

.mic-btn-v2 i {
    color: #666;
    font-size: 14px;
}


.mic-btn-v2.active-listening {
    background-color: #007bff !important; 
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.mic-btn-v2.active-listening i {
    color: white !important;
} */

.carousel-item {
    width: 600px;
}


