#novo-footer {
  font-family: var(--fonte);
  font-size: 12px;
  color: var(--light-grey);
  background-color: #1f1f1f !important;
  margin-top: auto;
  padding-top: 5px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid var(--light-grey);
  padding: 10px;
  gap: 6px;
}

.footer-links a {
  color: var(--light-grey);
  text-decoration: none;
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-telegram {
  color: #0d6efd !important; /* bleu Telegram ou celui de ton thème */
}

.footer-telegram svg {
  width: 16px;
  height: 16px;
  margin-bottom: -2px;
}

.telegram-icon {
  vertical-align: middle;
  fill: #0088cc;
}

.footer-fixed {
    color: #fff;
    background-color: #1f1f1f !important;
    box-sizing: border-box;
}

@media (min-width: 768px) {
  .footer-fixed {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
    max-width: 100vw;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-main-links {
    margin-bottom: 4px;
  }

  .footer-telegram {
    margin-top: 6px;
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 80px !important; /* Ajuste selon la hauteur réelle du footer */
  }
  .footer-fixed {
    font-size: 13px;
    min-height: 60px;
  }
  .footer-container {
    padding: 0.5rem 0.5rem;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    font-size: 13px;
    line-height: 1.3;
  }
  .footer-links a {
    font-size: 13px;
    padding: 0 2px;
    margin: 0 2px;
    white-space: nowrap;
  }
  .footer-links span {
    display: none;
  }
  .footer-copy {
    font-size: 12px;
    margin-top: 2px;
  }
  .footer-telegram {
    margin-top: 0.3rem !important;
    display: inline-block !important;
  }
}