
#fuel-float-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #e86d00;
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  z-index: 1000;
}

#fuel-panel {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 120px;
  width: 300px;
  background-color: #111;
  color: white;
  border: 2px solid #e86d00;
  padding: 10px;
  border-radius: 12px;
  font-family: sans-serif;
  z-index: 1001;
}

.fuel-title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
  color: #ffc100;
}

.fuel-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fuel-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fuel-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.station-name {
  flex: 1;
  font-size: 14px;
}

.diesel-price {
  font-family: 'Courier New', Courier, monospace;
  background-color: black;
  color: #00ff00;
  padding: 2px 6px;
  border-radius: 4px;
}

.disclaimer {
  margin-top: 12px;
  font-size: 12px;
  text-align: center;
  cursor: help;
  position: relative;
  color: #aaa;
}

#hover-msg {
  display: none;
  position: absolute;
  background-color: #222;
  color: #ff0;
  padding: 5px;
  border-radius: 5px;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  font-size: 11px;
}
