* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
body,
html {
  height: 100%;
  width: 100%;
  font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
body {
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}
#top-header {
  background-color: #fff;
  border-bottom: 2px solid #f0f0f0;
  padding: 12px 20px;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.05);
  box-shadow: 0 2px 4px rgba(0,0,0,.05);
  z-index: 100
}
#top-header h1 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0
}
.layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100vw;
  min-height: 0;
  overflow: hidden
}
#map {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  background-color: #e0e0e0
}
.cookies-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0,0,0,.15);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  padding: 20px;
  max-width: 350px;
  z-index: 9999;
  -webkit-animation: .3s ease-out slideUp;
  animation: .3s ease-out slideUp;
  font-size: 14px;
  font-family: inherit
}
.cookies-popup.hidden {
  display: none
}
.cookies-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px
}
.cookies-text h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50
}
.cookies-text p {
  margin: 0;
  color: #555;
  line-height: 1.4
}
.cookies-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}
.cookies-popup .btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  -webkit-transition: .2s;
  transition: .2s
}
.cookies-popup .btn-primary {
  background-color: #3498db;
  color: #fff
}
.cookies-popup .btn-primary:hover {
  background-color: #2980b9
}
.cookies-popup .btn-secondary {
  background-color: #ecf0f1;
  color: #2c3e50
}
.cookies-popup .btn-secondary:hover {
  background-color: #d5dbdb
}
@-webkit-keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px)
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px)
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}
@media (max-width:600px) {
  .cookies-popup {
    max-width: calc(100vw - 40px);
    bottom: 10px;
    right: 10px;
    left: 10px
  }
  .cookies-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
  .cookies-popup .btn {
    width: 100%
  }
}
#sidebar {
  width: 480px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-left: 1px solid #ddd;
  -webkit-box-shadow: -2px 0 8px rgba(0,0,0,.1);
  box-shadow: -2px 0 8px rgba(0,0,0,.1);
  z-index: 10;
  overflow: hidden
}
#sidebar-header {
  padding: 12px 20px;
  border-bottom: 2px solid #f0f0f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}
.btn-refresh {
  background: 0 0;
  border: 2px solid #3498db;
  color: #3498db;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  -webkit-transition: .3s;
  transition: .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.btn-refresh:hover {
  background-color: #3498db;
  color: #fff;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg)
}
.btn-refresh:active {
  -webkit-transform: rotate(180deg) scale(.95);
  transform: rotate(180deg) scale(.95)
}
#stations-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: auto;
  padding: 15px;
  min-height: 0
}
#address-search-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}
#address-search-section .search-input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 200px
}
.btn-search {
  padding: 10px 20px;
  background-color: #3498db;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
  white-space: nowrap
}
.btn-search:hover {
  background-color: #2980b9;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 2px 8px rgba(52,152,219,.3);
  box-shadow: 0 2px 8px rgba(52,152,219,.3)
}
.btn-search:active {
  -webkit-transform: translateY(0);
  transform: translateY(0)
}
.btn-search:disabled {
  background-color: #95a5a6;
  cursor: not-allowed;
  -webkit-transform: none;
  transform: none
}
.search-marker {
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
#filter-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 20px
}
#filter-section .search-input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0
}
#filter-section .fuel-filter {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}
#zoom-warning {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #856404;
  line-height: 1.4
}
#zoom-warning p {
  margin: 0
}
.fuel-filter,
.search-input {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  -webkit-transition: border-color .2s;
  transition: border-color .2s
}
.fuel-filter:focus,
.search-input:focus {
  outline: 0;
  border-color: #3498db;
  -webkit-box-shadow: 0 0 0 3px rgba(52,152,219,.1);
  box-shadow: 0 0 0 3px rgba(52,152,219,.1)
}
#stations-list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  min-height: 0
}
.station-item {
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fafafa;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
  border-left: 4px solid #3498db
}
.station-item:hover {
  background-color: #f0f8ff;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,.1);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  border-left-color: #2980b9
}
.station-item.active {
  background-color: #e3f2fd;
  border-color: #1976d2
}
.station-name {
  font-weight: 600;
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 6px
}
.station-org {
  font-size: 12px;
  color: #7f8c8d;
  margin-bottom: 6px
}
.station-phone {
  font-size: 12px;
  color: #3498db;
  text-decoration: none;
  margin-bottom: 8px;
  display: block
}
.station-phone:hover {
  text-decoration: underline
}
.station-location {
  font-size: 12px;
  color: #95a5a6;
  margin-bottom: 6px
}
.station-badges {
  font-size: 12px;
  color: #7f8c8d;
  margin-bottom: 6px;
  font-style: italic
}
.fuel-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px
}
.fuel-price-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  padding: 6px 0 4px;
  border-top: 1px solid #e8e8e8
}
.fuel-price-item:first-child {
  border: none;
  padding-top: 0
}
.fuel-type {
  font-weight: 500;
  color: #2c3e50
}
.fuel-price {
  font-weight: 600;
  color: #27ae60
}
.fuel-price-header {
  font-weight: 600;
  font-size: 13px;
  color: #2c3e50;
  margin-top: 8px;
  margin-bottom: 4px
}
.error-state,
.loading-state,
.location-prompt-state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px
}
.error-state p,
.loading-state p,
.location-prompt-state p {
  text-align: center;
  color: #7f8c8d;
  font-size: 14px
}
.error-state {
  color: #e74c3c
}
.location-prompt-state {
  padding: 20px
}
.location-prompt-state p {
  color: #2c3e50;
  font-weight: 500;
  line-height: 1.5
}
.location-prompt-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 300px
}
.location-prompt-search .search-input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}
#error-message {
  color: #e74c3c;
  font-weight: 500
}
.metadata {
  padding: 12px 15px;
  border-top: 1px solid #e0e0e0;
  background-color: #f9f9f9;
  font-size: 11px;
  color: #95a5a6;
  text-align: center
}
.no-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #7f8c8d;
  font-size: 14px;
  padding: 20px;
  text-align: center
}
#stations-list::-webkit-scrollbar {
  width: 6px
}
#stations-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px
}
#stations-list::-webkit-scrollbar-thumb {
  background: #bdc3c7;
  border-radius: 10px
}
#stations-list::-webkit-scrollbar-thumb:hover {
  background: #95a5a6
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2000
}
.popup-content {
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0,0,0,.3);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}
.popup-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #f0f0f0
}
.popup-header h3 {
  margin: 0;
  font-size: 18px;
  color: #2c3e50
}
.popup-close {
  background: 0 0;
  border: none;
  font-size: 24px;
  color: #95a5a6;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 4px;
  -webkit-transition: .2s;
  transition: .2s
}
.popup-close:hover {
  background-color: #f0f0f0;
  color: #2c3e50
}
.address-results-list {
  overflow-y: auto;
  max-height: calc(80vh - 80px);
  padding: 10px
}
.address-result-item {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
  background-color: #fafafa
}
.address-result-item:hover {
  background-color: #e3f2fd;
  border-color: #3498db;
  -webkit-transform: translateX(4px);
  transform: translateX(4px)
}
.address-result-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px
}
.address-result-maps-btn {
  background: 0 0;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  -webkit-transition: .2s;
  transition: .2s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: none
}
.address-result-maps-btn:hover {
  background-color: #e0e0e0;
  -webkit-transform: scale(1.1);
  transform: scale(1.1)
}
@media (max-width:768px) {
  .address-result-maps-btn {
    display: block
  }
}
.address-result-name {
  font-size: 14px;
  color: #2c3e50;
  margin-bottom: 4px;
  font-weight: 500
}
.address-result-type {
  font-size: 12px;
  color: #7f8c8d;
  text-transform: capitalize
}
.address-results-list::-webkit-scrollbar {
  width: 6px
}
.address-results-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px
}
.address-results-list::-webkit-scrollbar-thumb {
  background: #bdc3c7;
  border-radius: 10px
}
.address-results-list::-webkit-scrollbar-thumb:hover {
  background: #95a5a6
}
.cheapest-popup-content {
  max-width: 500px
}
#cheapest-content {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(80vh - 80px)
}
.cheapest-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px
}
.cheapest-item {
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  padding: 16px;
  background-color: #fafafa;
  -webkit-transition: .2s;
  transition: .2s
}
.cheapest-item:hover {
  border-color: #3498db;
  background-color: #f0f8ff;
  -webkit-box-shadow: 0 2px 8px rgba(52,152,219,.15);
  box-shadow: 0 2px 8px rgba(52,152,219,.15)
}
.cheapest-fuel-type {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px
}
.cheapest-price {
  font-size: 28px;
  font-weight: 700;
  color: #27ae60;
  margin-bottom: 8px
}
.cheapest-tank-price {
  font-size: 12px;
  color: #7f8c8d;
  margin-bottom: 8px;
  font-style: italic
}
.cheapest-station {
  margin: 10px 0;
  padding: 10px;
  background-color: #fff;
  border-radius: 6px;
  border-left: 3px solid #f39c12
}
.cheapest-station-name {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 4px
}
.cheapest-station-location {
  font-size: 12px;
  color: #7f8c8d
}
.cheapest-navigate-btn {
  width: 100%;
  padding: 10px 16px;
  margin-top: 10px;
  background: linear-gradient(135deg,#3498db 0,#2980b9 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s
}
.cheapest-navigate-btn:hover {
  background: linear-gradient(135deg,#2980b9 0,#1f618d 100%);
  -webkit-box-shadow: 0 4px 12px rgba(52,152,219,.4);
  box-shadow: 0 4px 12px rgba(52,152,219,.4);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px)
}
.cheapest-navigate-btn:active {
  -webkit-transform: translateY(0);
  transform: translateY(0)
}
#cheapest-content::-webkit-scrollbar {
  width: 6px
}
#cheapest-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px
}
#cheapest-content::-webkit-scrollbar-thumb {
  background: #bdc3c7;
  border-radius: 10px
}
#cheapest-content::-webkit-scrollbar-thumb:hover {
  background: #95a5a6
}
.leaflet-control-attribution {
  background-color: rgba(255,255,255,.8)!important
}
.leaflet-popup-content {
  margin: 8px 12px;
  font-family: inherit;
  font-size: 12px
}
.market-popup-title {
  font-weight: 600;
  margin-bottom: 6px;
  color: #2c3e50
}
.market-popup-price {
  font-size: 11px;
  margin: 2px 0
}
.drawer-toggle {
  display: none
}
.drawer-toggle.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}
@media (max-width:768px) {
  body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
  #top-header {
    padding: 10px 16px
  }
  #top-header h1 {
    font-size: 20px
  }
  .layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto
  }
  #map {
    height: 100vh;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    z-index: 1
  }
  #sidebar {
    width: 100%;
    border-left: none;
    border-top: 1px solid #ddd;
    height: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 80vh;
    border-radius: 16px 16px 0 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s,-webkit-transform .3s;
    z-index: 1000;
    background-color: #fff
  }
  #sidebar.drawer-open {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
  #sidebar-header {
    padding: 12px 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }
  .header-actions {
    gap: 8px;
    width: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
  }
  .btn-tank {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    padding: 8px 12px;
    font-size: 13px;
    gap: 4px
  }
  .btn-tank span {
    display: none
  }
  .btn-tank.has-tank span {
    display: inline
  }
  .btn-nav {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    padding: 8px 12px;
    font-size: 13px;
    gap: 4px
  }
  .btn-refresh {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 18px
  }
  .station-item {
    padding: 10px
  }
  .drawer-toggle {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg,#3498db 0,#2980b9 100%);
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    -webkit-box-shadow: 0 4px 12px rgba(52,152,219,.4);
    box-shadow: 0 4px 12px rgba(52,152,219,.4);
    -webkit-transition: .3s;
    transition: .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  .drawer-toggle:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0 6px 16px rgba(52,152,219,.5);
    box-shadow: 0 6px 16px rgba(52,152,219,.5)
  }
  .drawer-toggle.drawer-open {
    background: linear-gradient(135deg,#e74c3c 0,#c0392b 100%)
  }
  #filter-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }
  #filter-section .fuel-filter,
  #filter-section .search-input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0
  }
  #drawer-overlay.active {
    display: block
  }
}
#drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0);
  z-index: 998;
  -webkit-transition: background .3s;
  transition: background .3s
}
#drawer-overlay.active {
  display: block;
  background: rgba(0,0,0,.5)
}
.header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}
.btn-nav {
  background: 0 0;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  white-space: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.btn-nav:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 2px 8px rgba(39,174,96,.3);
  box-shadow: 0 2px 8px rgba(39,174,96,.3)
}
.btn-nav:active {
  -webkit-transform: translateY(0);
  transform: translateY(0)
}
.btn-nav:disabled {
  opacity: .5;
  cursor: not-allowed;
  border-color: #bdc3c7;
  color: #bdc3c7
}
.btn-nav:disabled:hover {
  background-color: transparent;
  -webkit-transform: none;
  transform: none;
  -webkit-box-shadow: none;
  box-shadow: none
}
.cheapest-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}
.cheapest-layout #sidebar {
  width: 100%;
  max-width: 900px;
  margin: 0 auto
}
.full-width {
  width: 100%!important
}
.fuel-type-filter {
  padding: 15px 20px;
  margin: 0 15px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.05);
  box-shadow: 0 2px 4px rgba(0,0,0,.05)
}
.fuel-type-filter h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px
}
.filter-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px
}
.filter-btn {
  padding: 8px 16px;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: #555;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  -webkit-transition: .2s;
  transition: .2s;
  white-space: nowrap
}
.filter-btn:hover {
  border-color: #3498db;
  background-color: #f0f8ff;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px)
}
.filter-btn.active {
  background: linear-gradient(135deg,#667eea 0,#764ba2 100%);
  color: #fff;
  border-color: #667eea;
  -webkit-box-shadow: 0 2px 8px rgba(102,126,234,.3);
  box-shadow: 0 2px 8px rgba(102,126,234,.3)
}
.filter-btn:active {
  -webkit-transform: translateY(0);
  transform: translateY(0)
}
#cheapest-container {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-y: auto;
  padding: 0 15px 15px
}
#cheapest-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px
}
.fuel-type-section {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,.05);
  box-shadow: 0 2px 8px rgba(0,0,0,.05)
}
.fuel-type-header {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 3px solid #3498db
}
.cheapest-stations-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px
}
.cheapest-station-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  -webkit-box-shadow: 0 2px 6px rgba(0,0,0,.08);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  -webkit-transition: .3s;
  transition: .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  position: relative;
  overflow: hidden
}
.cheapest-station-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: -webkit-gradient(linear,left top,left bottom,from(#3498db),to(#2ecc71));
  background: linear-gradient(180deg,#3498db 0,#2ecc71 100%)
}
.cheapest-station-card:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0,0,0,.15);
  box-shadow: 0 4px 12px rgba(0,0,0,.15)
}
.cheapest-station-card.rank-1 {
  border: 2px solid gold;
  background: -webkit-gradient(linear,left top,right top,from(#fffef7),to(#fff));
  background: linear-gradient(to right,#fffef7,#fff)
}
.cheapest-station-card.rank-1::before {
  background: -webkit-gradient(linear,left top,left bottom,from(gold),to(#ffed4e));
  background: linear-gradient(180deg,gold 0,#ffed4e 100%);
  width: 5px
}
.cheapest-station-card.rank-2 {
  border: 2px solid silver
}
.cheapest-station-card.rank-3 {
  border: 2px solid #cd7f32
}
.rank-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg,#667eea 0,#764ba2 100%);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.2);
  box-shadow: 0 2px 4px rgba(0,0,0,.2)
}
.cheapest-station-card.rank-1 .rank-badge {
  background: linear-gradient(135deg,gold 0,#ffed4e 100%);
  color: #333;
  font-size: 24px
}
.cheapest-station-card.rank-2 .rank-badge {
  background: linear-gradient(135deg,silver 0,#e8e8e8 100%);
  color: #333
}
.cheapest-station-card.rank-3 .rank-badge {
  background: linear-gradient(135deg,#cd7f32 0,#e09e5c 100%);
  color: #fff
}
.station-details {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}
.station-name-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 15px
}
.cheapest-station-card .station-name {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}
.station-price {
  font-size: 24px;
  font-weight: 700;
  color: #27ae60;
  white-space: nowrap;
  font-family: 'Courier New',monospace;
  letter-spacing: -.5px
}
.cheapest-station-card .station-org {
  font-size: 13px;
  color: #7f8c8d;
  margin-bottom: 6px
}
.station-brand {
  font-size: 12px;
  color: #95a5a6;
  margin-bottom: 6px
}
.cheapest-station-card .station-location {
  font-size: 13px;
  color: #555;
  margin-bottom: 6px
}
.cheapest-station-card .station-badges {
  font-size: 12px;
  color: #7f8c8d;
  margin: 6px 0
}
.cheapest-station-card .station-phone {
  font-size: 13px;
  color: #555;
  margin: 6px 0
}
.cheapest-station-card .station-phone a {
  color: #3498db;
  text-decoration: none
}
.cheapest-station-card .station-phone a:hover {
  text-decoration: underline
}
.price-updated {
  font-size: 11px;
  color: #95a5a6;
  margin-top: 8px;
  font-style: italic
}
@media (max-width:768px) {
  .cheapest-layout #sidebar {
    max-width: 100%
  }
  .fuel-type-filter {
    padding: 12px 15px;
    margin: 0 10px
  }
  .fuel-type-filter h3 {
    font-size: 14px;
    margin-bottom: 10px
  }
  .filter-buttons {
    gap: 6px
  }
  .filter-btn {
    padding: 6px 12px;
    font-size: 12px
  }
  .fuel-type-section {
    padding: 15px
  }
  .fuel-type-header {
    font-size: 18px
  }
  .cheapest-station-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }
  .rank-badge {
    min-width: 40px;
    height: 40px;
    font-size: 16px
  }
  .station-name-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px
  }
  .station-price {
    font-size: 20px
  }
}
.admin-layout {
  background-color: #f8f9fa
}
.admin-layout #sidebar {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-left: none;
  -webkit-box-shadow: none;
  box-shadow: none
}
.admin-content {
  padding: 20px;
  overflow-y: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}
.admin-section {
  margin-bottom: 40px
}
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #3498db
}
.admin-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.05);
  box-shadow: 0 2px 4px rgba(0,0,0,.05)
}
.admin-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #34495e;
  margin-bottom: 8px
}
.card-description {
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 15px
}
.input-group {
  margin-bottom: 15px
}
.input-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #34495e;
  margin-bottom: 5px
}
.input-field {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  -webkit-transition: border-color .2s;
  transition: border-color .2s
}
.input-field:focus {
  outline: 0;
  border-color: #3498db;
  -webkit-box-shadow: 0 0 0 3px rgba(52,152,219,.1);
  box-shadow: 0 0 0 3px rgba(52,152,219,.1)
}
.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px
}
.checkbox-group {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px
}
.checkbox-group label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #34495e;
  cursor: pointer
}
.checkbox-group input[type=checkbox] {
  margin-right: 8px;
  cursor: pointer
}
.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
  width: 100%;
  margin-top: 10px
}
.btn-primary {
  background-color: #3498db;
  color: #fff
}
.btn-primary:hover:not(:disabled) {
  background-color: #2980b9;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 8px rgba(52,152,219,.3);
  box-shadow: 0 4px 8px rgba(52,152,219,.3)
}
.btn-primary:active:not(:disabled) {
  -webkit-transform: translateY(0);
  transform: translateY(0)
}
.btn-secondary {
  background-color: #95a5a6;
  color: #fff
}
.btn-secondary:hover:not(:disabled) {
  background-color: #7f8c8d;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 8px rgba(149,165,166,.3);
  box-shadow: 0 4px 8px rgba(149,165,166,.3)
}
.btn-primary:disabled,
.btn-secondary:disabled {
  opacity: .6;
  cursor: not-allowed
}
.btn-danger {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
  width: 100%;
  margin-top: 10px;
  background-color: #e74c3c;
  color: #fff
}
.btn-danger:hover:not(:disabled) {
  background-color: #c0392b;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 8px rgba(231,76,60,.3);
  box-shadow: 0 4px 8px rgba(231,76,60,.3)
}
.btn-danger:active:not(:disabled) {
  -webkit-transform: translateY(0);
  transform: translateY(0)
}
.btn-danger:disabled {
  opacity: .6;
  cursor: not-allowed
}
.btn-loading {
  font-size: 14px
}
.result-box {
  margin-top: 15px;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background-color: #f8f9fa
}
.result-box.success {
  border-color: #27ae60;
  background-color: #d5f4e6
}
.result-box.error {
  border-color: #e74c3c;
  background-color: #fadbd8
}
.result-summary {
  margin-bottom: 10px
}
.result-summary strong {
  font-size: 16px
}
.result-summary p {
  margin-top: 5px;
  font-size: 14px
}
.success-text {
  color: #27ae60
}
.error-text {
  color: #e74c3c
}
.result-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 10px 0;
  padding: 10px;
  background-color: rgba(255,255,255,.5);
  border-radius: 4px
}
.stat-item {
  font-size: 14px;
  color: #34495e
}
.stat-item strong {
  color: #2c3e50;
  font-size: 16px
}
.data-count {
  font-size: 14px;
  color: #34495e;
  margin: 10px 0
}
.data-count strong {
  color: #2c3e50
}
.json-details {
  margin-top: 10px
}
.json-details summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #3498db;
  padding: 8px;
  background-color: rgba(52,152,219,.1);
  border-radius: 4px;
  -webkit-transition: background-color .2s;
  transition: background-color .2s
}
.json-details summary:hover {
  background-color: rgba(52,152,219,.2)
}
.json-response {
  margin-top: 10px;
  padding: 15px;
  background-color: #2c3e50;
  color: #ecf0f1;
  border-radius: 4px;
  overflow-x: auto;
  font-family: 'Courier New',Courier,monospace;
  font-size: 12px;
  line-height: 1.5
}
.endpoint-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px
}
.endpoint-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 4px;
  border-left: 3px solid #3498db
}
.method {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  min-width: 50px;
  text-align: center
}
.method.get {
  background-color: #27ae60;
  color: #fff
}
.method.post {
  background-color: #3498db;
  color: #fff
}
.endpoint-item code {
  font-family: 'Courier New',Courier,monospace;
  font-size: 13px;
  color: #2c3e50;
  background-color: #ecf0f1;
  padding: 4px 8px;
  border-radius: 3px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}
.endpoint-desc {
  font-size: 13px;
  color: #7f8c8d;
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2
}
.btn-nav {
  text-decoration: none;
  color: #3498db;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border: 1px solid #3498db;
  border-radius: 6px;
  -webkit-transition: .2s;
  transition: .2s;
  display: inline-block
}
.btn-nav:hover {
  background-color: #3498db;
  color: #fff
}
.header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
@media (max-width:768px) {
  .admin-content {
    padding: 15px
  }
  .input-row {
    grid-template-columns: 1fr
  }
  .result-stats {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px
  }
  .endpoint-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 5px
  }
  .endpoint-item code {
    width: 100%
  }
}
.leaderboard-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 15px;
  border-bottom: 2px solid #f0f0f0;
  background-color: #f9f9f9
}
.tab-btn {
  background: #fff;
  border: 2px solid #ddd;
  color: #666;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center
}
.tab-btn:hover {
  border-color: #3498db;
  color: #3498db
}
.tab-btn.active {
  background-color: #3498db;
  border-color: #3498db;
  color: #fff
}
.station-clickable {
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s
}
.station-clickable:hover {
  background-color: #f8f9fa;
  -webkit-box-shadow: 0 2px 12px rgba(52,152,219,.2);
  box-shadow: 0 2px 12px rgba(52,152,219,.2);
  border-left: 4px solid #3498db
}
.btn-tank {
  background: 0 0;
  border: 2px solid #f39c12;
  color: #f39c12;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  -webkit-transition: .3s;
  transition: .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.btn-tank:hover {
  background-color: #f39c12;
  color: #fff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 2px 8px rgba(243,156,18,.3);
  box-shadow: 0 2px 8px rgba(243,156,18,.3)
}
.btn-tank:active {
  -webkit-transform: translateY(0);
  transform: translateY(0)
}
.btn-tank.has-tank {
  background-color: #f39c12;
  color: #fff
}
.tank-size-popup-content {
  max-width: 400px
}
.tank-size-form {
  padding: 20px
}
.tank-size-description {
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 20px;
  line-height: 1.5
}
.tank-size-form .input-group {
  margin-bottom: 20px
}
.tank-size-form .input-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #34495e;
  margin-bottom: 8px
}
.tank-size-form .input-field {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  -webkit-transition: border-color .2s;
  transition: border-color .2s
}
.tank-size-form .input-field:focus {
  outline: 0;
  border-color: #f39c12;
  -webkit-box-shadow: 0 0 0 3px rgba(243,156,18,.1);
  box-shadow: 0 0 0 3px rgba(243,156,18,.1)
}
.tank-size-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px
}
.tank-size-actions .btn-primary,
.tank-size-actions .btn-secondary {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 12px 20px;
  margin-top: 0
}
.tank-size-actions .btn-primary {
  background-color: #f39c12
}
.tank-size-actions .btn-primary:hover:not(:disabled) {
  background-color: #e67e22;
  -webkit-box-shadow: 0 4px 8px rgba(243,156,18,.3);
  box-shadow: 0 4px 8px rgba(243,156,18,.3)
}
.tank-price-section {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #bdc3c7
}
.tank-price-header {
  font-size: 10px;
  font-weight: 600;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px
}
.tank-price-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 11px;
  padding: 3px 0
}
.tank-price-label {
  color: #555
}
.tank-price-value {
  font-weight: 600;
  color: #e67e22
}
.station-tank-prices {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #e0e0e0
}
.station-tank-prices .fuel-price-header {
  font-size: 11px;
  color: #f39c12;
  margin-bottom: 4px
}
.station-tank-price-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  padding: 2px 0
}
.station-tank-price-item .fuel-type {
  font-weight: 500;
  color: #555
}
.station-tank-price-item .tank-price {
  font-weight: 600;
  color: #e67e22
}
@media (max-width:768px) {
  .btn-tank span {
    display: none
  }
  .btn-tank {
    padding: 8px
  }
}