
    body { font-family: Arial, sans-serif; margin: 0; background: #f7f7f7; color: #333; }
    header { background: #2196F3; color: #fff; padding: 15px; text-align: center; }
    header h1 { margin: 0; font-size: 1.8em; }

    .container { max-width: 1000px; margin: auto; padding: 20px; }

    table { width: 100%; border-collapse: collapse; margin-top: 20px; }
    th, td {
      border: 1px solid #ccc;
      padding: 10px;
      text-align: center;
      font-size: 0.9em;
    }
    th { background-color: #1976D2; color: #fff; position: sticky; top: 0; }
    td .program {
      background: #E3F2FD;
      border-radius: 5px;
      padding: 5px;
      margin-bottom: 5px;
    }

    .giorno-mobile {
      display: none;
    }

    .footer {
      text-align: center;
      background: #1976D2;
      color: #fff;
      padding: 15px;
      margin-top: 30px;
    }
    .footer a { color: #fff; text-decoration: underline; margin: 0 5px; }

    /* VERSIONE MOBILE */
    @media (max-width: 768px) {
      table, thead, tbody, th, td, tr {
        display: none;
      }

      .giorno-mobile {
        display: block;
        margin-bottom: 30px;
      }

      .giorno-mobile h3 {
        background: #2196F3;
        color: white;
        padding: 10px;
        margin: 0;
        border-radius: 5px 5px 0 0;
      }

      .ora-block {
        background: #fff;
        border: 1px solid #ddd;
        padding: 10px;
        border-radius: 0 0 5px 5px;
      }

      .ora-block p {
        margin: 0 0 8px 0;
      }

      .program {
        background: #E3F2FD;
        padding: 5px;
        margin: 5px 0;
        border-radius: 4px;
      }
    }



       *, *::before, *::after { box-sizing: border-box; }

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #f7f7f7;
      color: #333;
    }

    /* Cookie banner */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      width: 100%;
      background-color: #333;
      color: #fff;
      padding: 12px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      z-index: 1000;
    }

    .cookie-banner button {
      background-color: #2196F3;
      border: none;
      color: white;
      padding: 8px 16px;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
    }

    .cookie-banner a { color: #fff; text-decoration: underline; margin-left: 15px; }

    header {
      background: #2196F3;
      color: #fff;
      padding: 15px 0;
      text-align: center;
    }

    .logo-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .site-logo { max-height: 60px; }
    .site-title { font-size: 1.8em; margin: 0; }

    /* Marquee */
    .rds-marquee {
      background: #1976D2;
      color: #fff;
      padding: 10px;
      font-weight: bold;
      overflow: hidden;
      white-space: nowrap;
      box-sizing: border-box;
    }

    .rds-text { display: inline-block; padding-left: 100%; animation: marquee 15s linear infinite; }
    @keyframes marquee { 0% { transform: translateX(0%); } 100% { transform: translateX(-100%); } }

    main.main-content { padding: 20px; max-width: 960px; margin: auto; }

    /* Player section */
    .player-section {
      text-align: center;
      margin-bottom: 40px;
    }

    .player-section audio {
      width: 100%;
      max-width: 600px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }


    /* Social share */
    #social-share h3 { font-size: 1.5em; margin-bottom: 15px; color: #2196F3; }
    #social-share a {
      text-decoration: none;
      color: #333;
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: bold;
      transition: color 0.2s;
    }
    #social-share a:hover { color: #2196F3; }

    /* Footer */

    .new-footer {
  background-color: #0D47A1;
  color: #fff;
  padding: 40px 20px 10px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #FFEB3B;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.85rem;
}

   

    .in-onda {
        background: #fff;
        border-radius: 12px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        text-align: center;
        flex: 1 1 220px;
        max-width: 220px;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .in-onda:hover { 
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .in-onda h2 {
        font-size: 1.8em;
        color: #2196F3;
        margin: 0 0 8px 0;
    }
    .in-onda p {
        font-size: 1em;
        color: #555;
        margin: 0;
    }

    /* Nuova Sezione Top 3 Programmi */
    .top-programmi {
      text-align: center;
      margin: 40px 0;
    }

    .top-programmi h3 {
      font-size: 1.8em;
      color: #2196F3;
      margin-bottom: 20px;
    }

    .top-programmi-container {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      padding: 0 15px;
    }

    .top-programma {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      width: 280px;
      padding: 20px;
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
      margin-bottom: 20px;
    }

    .top-programma:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .programma-cover {
      width: 100%;
      max-width: 260px;
      height: auto;
      border-radius: 8px;
    }

    .top-programma h4 {
      font-size: 1.4em;
      margin-top: 15px;
      color: #2196F3;
    }

    .top-programma p {
      font-size: 1em;
      color: #555;
      margin-top: 10px;
    }

    /* Stile responsivo per schermi piccoli */
    @media (max-width: 768px) {
      .top-programmi-container {
        gap: 10px;
        padding: 0;
      }

      .top-programma {
        width: 100%;
        max-width: 350px;
      }
    }

    @media (max-width: 480px) {
      .top-programmi h3 {
        font-size: 1.5em;
      }

      .top-programma h4 {
        font-size: 1.2em;
      }

      .top-programma p {
        font-size: 0.9em;
      }
    }

      .podcast-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
  }
  .podcast-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 280px;
    display: flex;
    flex-direction: column;
  }
  .podcast-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }
  .podcast-info {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .podcast-info strong {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #2196F3;
  }
  audio {
    width: 100%;
    outline: none;
  }
  @media (max-width: 600px) {
    .podcast-item {
      width: 100%;
    }
  }

  .space{

    margin-top: 60px;
  }









  