.slider-container {
  position: relative;
  overflow: hidden;
  background: transparent;
  height: 80px;
}

.slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
}

.slide a {
  display: inline-block;
  height: 60px;
  text-decoration: none;
  color: var(--default-color);
}

.slide img {
  height: 100%;
  object-fit: contain;
  max-width: 100%;
}

.slide-caption {
  font-size: 0.75rem;
  color: var(--default-color);
}

.chevrons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  transform: translateY(-50%);
}

.chevrons button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--accent-color);
}



.meteo-widget-fixee {
    position: fixed;
    top: 20px;              /* position initiale en haut */
    right: 20px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 160px;
    text-align: center;
    font-size: 14px;
    cursor: move;
    touch-action: none;
}

.meteo-widget-fixee img {
    max-height: 200px;
    display: block;
    margin: 8px auto 0 auto;
}

@media (max-width: 768px) {
    .meteo-widget-fixee {
        top: 10px;
        right: 10px;
        font-size: 12px;
        max-width: 140px;
        padding: 8px;
    }

    .meteo-widget-fixee img {
        max-height: 80px;
    }
}
