.wrapper{padding:0!important}
/*pour permetre a l'ombre de passer*/
.owl-stage-outer{
  padding-bottom: 10px;
  padding-top: 6px;
}



/* force le border radius*/
.card ,.card-img-top, #carousel-articles, .text-highlight, .cover-image , .play-cover {
  border-radius: 1rem !important;
}
.btn{
   border-radius: 1rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}
#source-direct {
 margin-top: 15px;
  background-color: #FF9D2D !important;
  margin-bottom: 7px;
}
#play-pause-btn, #rewind-btn, #forward-btn, #settings-btn {
  background-color: #FF9D2D;
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  margin-left: 2px;
  margin-right: 2px;
}

@media (max-width: 767.98px) {
  #play-pause-btn, .settings-btn {
    width: 50px;
    height: 50px;
  }
  #play-pause-btn>i {
   transform: translateX(-4px);
}
}



.boite-programe-jour {
  height: 400px;
  overflow-y: auto;
  overflow-x: hidden;

  /* Pour Firefox */
  scrollbar-width: thin;                /* taille fine */
  scrollbar-color: #ffcc00 #222;        /* curseur / fond */
}

/* Pour Chrome, Edge, Safari */
.boite-programe-jour::-webkit-scrollbar {
  width: 10px;                          /* largeur de la barre */
}

.boite-programe-jour::-webkit-scrollbar-track {
  background: #222;                     /* fond de la piste */
  border-radius: 10px;
}

.boite-programe-jour::-webkit-scrollbar-thumb {
  background-color: #ffcc00;            /* couleur du curseur */
  border-radius: 10px;                  /* bords arrondis */
  border: 2px solid #222;               /* espace autour */
}

.boite-programe-jour::-webkit-scrollbar-thumb:hover {
  background-color: #ffdd33;            /* survol plus clair */
}

/*semaine*/
.boite-programe-semaine {
margin-top: 2rem;
margin-bottom: 3rem;
}

.lt-loading, .lt-error {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lt-retry-btn {
  transition: all 0.3s ease;
}

.lt-show-row.lt-current {
  background-color: #e7f1ff;
  border-left: 4px solid #0d6efd;
}


.card-jour{
  padding: 20px;
}

.card-jour {
  position: relative; /* nécessaire pour le pseudo-élément */
}

.card-jour::before {
  content: ""; 
  position: absolute;
  top: -40px;
  right: 10px;
  width: 100px;      /* taille du SVG */
  height: 100px;
  background-image: url('../images/icone_agenda.svg'); /* <-- chemin relatif depuis css/ */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
  pointer-events: none; /* ne bloque pas le clic sur le contenu */
   transform: rotate(15deg);          /* <-- rotation de 30° */
  transform-origin: center center;   /* pivot au centre */
}

.card-jour:hover::before {
  transform: scale(1.1);
  opacity: 1;
  transform: rotate(12deg);  
}


.source-indicator{
  background-color: #FF9D2D !important;
  border-radius: 25px;
}

/*bouton sur les podcaste*/
.play-btn-overlay{
  border-radius: 50% !important;
  background-color: #FF9D2D !important;
  bottom: 5px!important;
  right: 5px!important;

}
.play-btn-overlay>i{
 font-size: 2em;
}

/* MEnu */

/* Remplacer complètement les anciennes règles .hamburger-line */
.hamburger-line {
    display: block;
    height: 7px; /* Hauteur pour chaque ligne SVG */
    width: 30px;
    background-color: transparent !important; /* Cache la ligne originale */
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: relative;
    margin-bottom: 4px; /* Espace entre les lignes */
}

.hamburger-line:last-child {
    margin-bottom: 0; /* Pas de marge sur la dernière ligne */
}

.hamburger-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Prend toute la hauteur de la ligne */
    background-image: url('../icone/icone-ligne-menu.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; /* Ajuste le SVG à la ligne */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Media query pour mobile */
@media (max-width: 768px) {
    .hamburger-line {
        width: 26px;
        height: 6px; /* Ajuste proportionnellement */
        margin-bottom: 3px;
    }
}