* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Segoe UI', sans-serif; background: #0f0f0f; color: #e0e0e0; line-height:1.6; }

nav { display:flex; justify-content:space-between; align-items:center; padding:1rem 2rem; background:#1a1a1a; }
nav .logo { color:#4A9EFF; font-size:1.5rem; font-weight:bold; text-decoration:none; }
nav ul { list-style:none; display:flex; gap:1.5rem; }
nav ul a { color:#aaa; text-decoration:none; }

.hero { display:flex; flex-direction:column; align-items:center; text-align:center; padding:3rem 1rem; }
.custom-widget-container { display:flex; justify-content:center; gap:20px; flex-wrap:wrap; margin-top:2rem; }

.station-card { width:250px; border-radius:16px; overflow:hidden; background:#1a1a1a; box-shadow:0 4px 12px rgba(0,0,0,0.5); padding-bottom:1rem; }
.station-header { padding:1.2rem; }
.station-header h3 { color:#fff; font-size:1.4rem; }
.station-address { color:#ffffff !important; font-size:0.75rem; opacity:0.9; margin-top:4px; font-weight:500; }

/* Header Farben */
.shell { background: linear-gradient(135deg, #FFD700, #FF8C00); }
.esso { background: linear-gradient(135deg, #e11b22, #003399); }
.oil { background: linear-gradient(135deg, #f39c12, #d35400); }
.agip { background: linear-gradient(135deg, #ffcc00, #333); }
.eberhardt { background: linear-gradient(135deg, #2980b9, #1a1a1a); }

/* Preis Farben */
.station-prices { padding: 1rem 0; }
.station-prices p { font-size:1.6rem; font-weight:bold; margin:5px 0; }
.shell-prices p { color: #FFD700; }
.esso-prices p { color: #3399ff; }
.oil-prices p { color: #f39c12; }
.agip-prices p { color: #ffcc00; }
.eberhardt-prices p { color: #3498db; }

/* 🔵 Buttons */
button, .widget-btn {
  background: linear-gradient(135deg, #4A9EFF, #2F6FE4);
  border: 1px solid #2F6FE4;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  margin: 5px;
  box-shadow: 0 4px 10px rgba(74,158,255,0.3);
}

button:hover, .widget-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

/* Rechner Buttons */
#cta-btn { background: linear-gradient(135deg, #2ecc71, #27ae60); }
#reset-btn { background: linear-gradient(135deg, #ff5f5f, #c0392b); }


.big { background:#1a1a1a; border:1px solid #333; color:#fff; padding:1rem; border-radius:12px; }

#result { font-weight:bold; color:#4A9EFF; margin-top:1rem; font-size:1.5rem; }

/* =========================
   📱 NEU: SIDE MENU
========================= */
.side-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #1a1a1a;
  box-shadow: 4px 0 15px rgba(0,0,0,0.5);
  padding-top: 80px;
  transition: left 0.35s ease;
  z-index: 1000;
}

.side-menu.open {
  left: 0;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 900;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

/* =========================
   🔘 NEU: TABS
========================= */
.menu-tabs {
  display: flex;
  border-bottom: 1px solid #333;
}

.tab-btn {
  flex: 1;
  padding: 1rem;
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-weight: bold;
}

.tab-btn.active {
  color: #4A9EFF;
  border-bottom: 2px solid #4A9EFF;
}

/* Inhalte */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.menu-content {
  padding: 1.5rem;
  color: #fff;
}


/* 🔵 Standard Buttons */
button, .widget-btn {
  background: linear-gradient(135deg, #4A9EFF, #2F6FE4);
  border: 1px solid #2F6FE4;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  margin: 5px;
  box-shadow: 0 4px 10px rgba(74,158,255,0.3);
}

/* ✨ Hover allgemein */
button:hover, .widget-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

/* 🟢 Berechnen */
#cta-btn {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border: 1px solid #27ae60;
  box-shadow: 0 4px 12px rgba(46,204,113,0.4);
}

#cta-btn:hover {
  background: linear-gradient(135deg, #3eea85, #2ecc71);
  box-shadow: 0 6px 16px rgba(46,204,113,0.6);
}

/* 🔴 Reset */
#reset-btn {
  background: linear-gradient(135deg, #ff5f5f, #c0392b);
  border: 1px solid #c0392b;
}

#reset-btn:hover {
  background: linear-gradient(135deg, #ff7b7b, #e74c3c);
}

#btn-shell.active-btn { box-shadow: 0 0 12px #FFD700; }
#btn-esso.active-btn { box-shadow: 0 0 12px #3399ff; }
#btn-oil.active-btn { box-shadow: 0 0 12px #f39c12; }
#btn-agip.active-btn { box-shadow: 0 0 12px #ffcc00; }
#btn-eberhardt.active-btn { box-shadow: 0 0 12px #3498db; }
#btn-auto.active-btn { box-shadow: 0 0 16px #4A9EFF;  transform: scale(1.08); }

.active-btn {
  transform: scale(1.05);
  border: 2px solid #fff !important;
}

/* Refresh Button Spezial */
.refresh-main-btn { margin-top: -1rem; border-color: #4A9EFF; color: white; display: inline-flex; align-items: center; gap: 8px; background: #4A9EFF; }
.refresh-main-btn:hover { background: #4A9EFF; color: #ffffff; border-color: #4A9EFF; }

/* Rechner Layout */
.big { 
  background:#1a1a1a; border:1px solid #333; color:#fff; padding:1rem; 
  border-radius:12px; width:250px; text-align:center; font-size:1.2rem; margin:1rem 0;
}
#mode, #station-dropdown { padding:0.5rem 1rem; border-radius:8px; border:2px solid #4A9EFF; background:#1a1a1a; color:white; font-size:1rem; appearance:none; background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="10" viewBox="0 0 24 24" width="10" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>'); background-repeat:no-repeat; background-position:right 0.75rem center; background-size:0.65rem; cursor:pointer; transition:all 0.25s ease, transform 0.3s ease; margin-bottom:0.5rem; margin-top:0.5rem;}
#station-dropdown { width:200px; }
#mode:hover, #mode:focus { border-color:#FFD700; transform: scale(1.03); }
#station-dropdown:hover, #station-dropdown:focus { border-color:#FFD700; transform: scale(1.03); }
/* Farben für die einzelnen Optionen im Dropdown */
#station-dropdown option {
    background-color: #1a1a1a; /* Standard-Hintergrund */
    color: white;
    padding: 10px;
}

.opt-shell { color: #FFD700 !important; font-weight: bold; }
.opt-esso { color: #ff3333 !important; font-weight: bold; }
.opt-oil { color: #f39c12 !important; font-weight: bold; }
.opt-agip { color: #ffcc00 !important; font-weight: bold; }
.opt-eberhardt { color: #3498db !important; font-weight: bold; }
.opt-globus { color: #2ecc71 !important; font-weight: bold; }
.opt-auto { color: #4A9EFF !important; font-weight: bold; font-style: italic; }


.spinner-small { width:14px; height:14px; border:2px solid rgba(255,255,255,0.2); border-top-color:#fff; border-radius:50%; animation:spin 0.8s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }

#result { font-weight:bold; color:#4A9EFF; margin-top:1rem; font-size:1.5rem; opacity:0; transition:0.4s; }
#result.visible { opacity:1; }

.accordion-btn { margin-top:1.0rem; font-size:0.9rem; opacity:1; }
/* Accordion Button Layout */
.accordion-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Pfeil Animation */
#accordion-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Gedrehter Zustand */
#accordion-arrow.open {
  transform: rotate(180deg);
}

/* Der Pfeil muss ein block-artiges Element sein, um gedreht werden zu können */
.arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease; /* Macht die Drehung geschmeidig */
  margin-left: 8px;
}

/* Wenn das übergeordnete Element die Klasse 'open' hat, drehe NUR den Pfeil */
.station-item.open .arrow-icon {
  transform: rotate(180deg);
}

/* Stelle sicher, dass der Preis NICHT gedreht wird */
.station-price {
  transform: none !important;
}


.refresh-note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

#aufruffarbe:visited{
  color: #4A9EFF;
  text-decoration: none;
}

#rechner {
  scroll-margin-top: 80px;
}

/* Rechner Buttons – gleiche Farben wie Widgets */

#btn-shell {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #ffffff;
}

#btn-esso {
  background: linear-gradient(135deg, #e11b22, #003399);
  color: #fff;
}

#btn-oil {
  background: linear-gradient(135deg, #f39c12, #d35400);
  color: #fff;
}

#btn-agip {
  background: linear-gradient(135deg, #ffcc00, #333);
  color: #ffffff;
}

#btn-eberhardt {
  background: linear-gradient(135deg, #2980b9, #1a1a1a);
  color: #fff;
}

.active-btn {
  transform: scale(1.05);
  border: 2px solid #fff !important;
}

/* 💡 Günstigste */
#btn-auto {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border: 1px solid #0072ff;
  box-shadow: 0 4px 12px rgba(0,114,255,0.4);
}

#btn-auto:hover {
  background: linear-gradient(135deg, #33d6ff, #3399ff);
  box-shadow: 0 6px 16px rgba(0,114,255,0.6);
}

/* Accordion Content Animation */
.extra-stations-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

/* Offener Zustand */
.extra-stations-content.open {
  max-height: 5000px;
  opacity: 1; /* groß genug für Inhalt */
}

.closed-label {
  color: #ff4d4d;
  font-weight: bold;
  margin-top: 5px;
}

.footer {
  text-align: center;
  padding: 1rem;
  background: #1a1a1a;
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* 🔥 Ergebnis Hervorhebung */
.highlight-value {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(135deg, #4A9EFF, #2F6FE4);
  padding: 4px 10px;
  border-radius: 8px;
  margin-left: 5px;
  display: inline-block;
}

.price-9 {
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 1px;
  opacity: 0.8;
}

.highlight-value {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(135deg, #4A9EFF, #2F6FE4);
  padding: 4px 10px;
  border-radius: 8px;
  margin-left: 5px;
  display: inline-block;
}

#result {
  font-weight: 500;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

#result.visible {
  animation: resultPop 0.5s ease forwards;
}

@keyframes resultPop {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-2px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#stationSelection,
#fuelSelection {
  transition: opacity 0.3s ease;
}

/* ===== SIDE MENU ===== */

.side-menu {
  position: fixed;
  top: 0;
  left: -85vw;           /* dynamisch */
  width: 85vw;           /* 85% Bildschirm */
  max-width: 360px;      /* aber nicht zu groß */
  height: 100%;
  background: #1a1a1a;
  box-shadow: 4px 0 15px rgba(0,0,0,0.5);
  padding-top: 80px;
  transition: left 0.35s ease;
  z-index: 1000;
  backdrop-filter: none;
  overflow-y: auto;
  overflow-x: auto;

  -webkit-overflow-scrolling: touch;
    /* Firefox */
  scrollbar-width: none;

  /* IE / Edge */
  -ms-overflow-style: none;

}

/* Chrome, Safari */
.side-menu::-webkit-scrollbar {
  display: none;
}

.side-menu.open {
  left: 0;
}

.side-menu.open {
  left: 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: #000;       /* 🔥 kein rgba mehr */
  opacity: 0;             /* steuert Sichtbarkeit */
  
  pointer-events: none;
  transition: opacity 0.3s ease;

  z-index: 900;
}

.menu-overlay.active {
  opacity: 0.6;           /* dunkelt sauber ab */
  pointer-events: all;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: white;
}

/* Tabs */
.menu-tabs {
  display: flex;
}

.tab-btn {
  flex: 1;
  padding: 1rem;
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
}

.tab-btn.active {
  color: #4A9EFF;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.menu-content {
  padding: 1rem;
}

.logo {
  cursor: pointer;
  transition: 0.2s;
}

.logo:active {
  transform: scale(0.95);
}

.menu-content {
  padding: 1.5rem;
  line-height: 1.8;
}

.menu-content p {
  font-size: 1rem;
}

.menu-content h2 {
  margin-bottom: 1rem;
}

#priceChart {
  width: 100%;
  height: auto;
  max-height: 220px;
}

.infotext {
  color: grey;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
}

#installBtn, #pushBtn {
  width: 100%;
  max-width: 320px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
}
#installBtn:active, #pushBtn:active {
  transform: scale(0.98);
}

.btwn-btntxt{
  margin: 5%;
}

.globus {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.globus-prices p {
  color: #2ecc71;
}

#btn-globus {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
}

#btn-globus.active-btn {
  box-shadow: 0 0 12px #2ecc71;
}

.station-list {
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.station-item {
  margin: 10px 0;
  cursor: pointer;
  transition: 0.3s;
}

.station-summary {
  cursor: pointer;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  font-weight: bold;
  background: #1a1a1a;
  border-radius: 12px;
}

.station-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

/* geöffnet */
.station-item.open .station-details {
  max-height: 2000px; 
  margin-top: 10px;
}

/* 🟢 günstigste */
.cheapest {
  border: 2px solid #2ecc71;
  box-shadow: 0 0 10px #2ecc71;
}

#installBtn {
  background: linear-gradient(135deg, #4A9EFF, #2F6FE4);
  font-size: 1.1rem;
}

.privacy-container {
  margin-top: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.privacy-btn {
  width: 96%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
}

.privacy-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(0, 0, 0, 0.2);
}

.privacy-inner {
  padding: 15px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #ccc;
  text-align: left;
}

.privacy-inner h4 {
  color: #4A9EFF;
  margin: 10px 0 5px 0;
}

.privacy-inner h1 {
  color: rgb(52, 24, 237);
  margin: 10px 0 5px 0;
}

.kleinp {
  font-size: 0.85rem;
  color: #ccc;
  margin-bottom: 8px;
}

.privacy-content.open {
  max-height: 500px; /* Groß genug für den Text */
  overflow-y: auto;
}

/* --- SCROLLBAR STYLING --- */

/* 1. Breite der Scrollbar */
::-webkit-scrollbar {
  width: 10px; /* Breite des vertikalen Balkens */
  height: 10px; /* Höhe des horizontalen Balkens (falls vorhanden) */
}

/* 2. Hintergrund der Scrollbar (die Schiene) */
::-webkit-scrollbar-track {
  background: #0f0f0f;
}

/* 3. Der bewegliche Balken (Handle) */
::-webkit-scrollbar-thumb {
  background: #2a2a2a; /* Dunkle Grundfarbe für den Balken */
  border-radius: 10px;
  border: 2px solid #0f0f0f; /* Abstand zur Schiene durch Rahmen */
}

/* 4. Balken beim Drüberfahren (Hover) */
::-webkit-scrollbar-thumb:hover {
  background: #4A9EFF;
}

/* Speziell für Firefox (andere Syntax) */
* {
  scrollbar-width: thin;
  scrollbar-color: #2a2a2a #0f0f0f;
}

/* Container für Preis und Pfeil */
.summary-flex-container {
  display: flex;
  justify-content: space-between; /* Schiebt Pfeil nach rechts */
  align-items: center;
  width: 100%;
}

.price-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Der Pfeil selbst */
.arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
  margin-left: 15px; /* Sicherheitshalber nach rechts schieben */
}

/* Die Drehung wenn offen */
.station-item.open .arrow-icon {
  transform: rotate(180deg);
}

.status-display {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

.best-price-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(26, 26, 26, 0.98);
  border: 1px solid #4A9EFF;
  border-radius: 20px;
  padding: 10px 15px;
  z-index: 3000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  min-width: 140px; /* Gibt dem Handy-Display eine feste Mindestbreite */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#widget-selector {
  display: flex;
  flex-direction: column;
  align-items: center; /* Zentriert Kinder horizontal */
  width: 100%;
}

.widget-label {
  display: block;
  width: 100%;
  text-align: center; /* Erzwingt mittigen Text */
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.widget-buttons {
  display: flex;
  gap: 8px;
  justify-content: center; /* Zentriert die Buttons nebeneinander */
}

/* Verhindert, dass das Widget auf extrem kleinen Bildschirmen kaputt geht */
@media (max-width: 380px) {
  .best-price-floating {
    right: 10px;
    bottom: 15px;
    min-width: 120px;
  }
}

/* Zustand wenn versteckt (beim Runterscrollen) */
.best-price-hidden {
  transform: translateY(100px);
  opacity: 0;
}

.mini-btn {
  padding: 5px 15px !important;
  font-size: 0.85rem !important;
  margin: 0 3px !important;
  border-radius: 20px !important;
}

#widget-price { color: #2ecc71; }
.mini-station-name { font-size: 0.7rem; color: #4A9EFF; text-align: center; }

.maps-link{
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.maps-link:hover {
  color: greenyellow;
}

.maps-pfeil {
  display:inline-block; 
  transform: rotate(-45deg);
  color: white;
  font-weight: normal;
  transition: color 0.3s ease;
  text-decoration: none;
  font-size: 1.4rem;
}

.maps-pfeil:hover {
  color: greenyellow;
}

@keyframes pulse-blue {
  0% { box-shadow: 0 0 0 0 rgba(74, 158, 255, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(74, 158, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 158, 255, 0); }
}

.highlight-pulse {
  border-color: #4A9EFF !important;
  animation: pulse-blue 1s infinite;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

/* ==========================================
   🎨 FIX: RECHTES SIDE-MENU (Darstellung)
   ========================================== */

/* Verhindert, dass das rechte Menü links alles überlagert */
#side-menu-right {
  right: -280px; /* Schiebt es standardmäßig nach rechts aus dem Bildschirm */
  transition: right 0.3s ease-in-out, visibility 0.3s;
}

/* Wenn das rechte Menü geöffnet wird */
#side-menu-right.open {
  right: 0 !important;
  left: auto !important;
}

/* Sicherstellen, dass das Overlay standardmäßig unsichtbar ist und Klicks nicht abfängt */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none; /* Verhindert das Blockieren von Klicks im Hintergrund */
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto; /* Erst aktiv, wenn Menü offen ist */
}

/* ==========================================
   ⭐ SAUBERE FAVORITEN-DESIGNS (OHNE VERSCHIEBUNG)
   ========================================== */
.favorite-primary {
  border: 1px solid rgba(0, 0, 0, 0.4) !important;
  box-shadow: 0 4px 15px rgba(74, 158, 255, 0.15) !important;
}

.favorite-secondary {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 4px 15px rgba(74, 158, 255, 0.15) !important;
}

.linkweb {
  display: block;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #4A9EFF;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

/* Dynamic Search Results */
.station-item-search {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.station-item-search:hover {
  border-color: #4A9EFF;
  background-color: #222;
}

.station-item-search.selected {
  border: 2px solid #2ecc71 !important;
  background-color: rgba(46, 204, 113, 0.1);
}

.price-details {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #333;
  font-weight: bold;
  color: #4A9EFF;
}