* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0f0f14;
  font-family: Arial, sans-serif;
}

/* Top bar */
.top-bar {
  width: 100%;
  height: 70px;
  background: black;
  display: flex;
  align-items: center;
  padding-left: 25px;
}

.logo-bzh {
  width: 180px;
}

/* Badge compteur */
.station-badge {
  margin-left: auto;
  margin-right: 50px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #1e1e2a;
  border: 1px solid #ff6fae;
  color: #ff6fae;
  font-size: 14px;
  display: flex;
  align-items: center;
}

/* Carte */
#map {
  width: 100%;
  height: calc(100vh - 70px);
}

/* Sidebar */
#sidebar {
  position: fixed;
  top: 0;
  right: -360px;
  width: 550px;
  height: 100%;
  background: #16161e;
  padding: 20px;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.7);
  transition: right 0.3s ease;
  z-index: 1000;
  max-width: 100vw;
}

#sidebar.open {
  right: 0;
}

#sidebar h2 {
  margin-top: 40px;
  color: #ff6fae;
}

#sidebar img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 15px;
  border-radius: 8px;
}

#closeSidebar {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 22px;
  color: white;
  cursor: pointer;
}

/* Bandeau inspiration */
.inspiration-banner {
  position: fixed;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  z-index: 1000;
}

.inspiration-banner a {
  color: #ff6fae;
  text-decoration: none;
}
