html, body {
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 768px) {
  body {
    padding-top: 0 !important; /* jei viršuje meta tarpa */
  }
}
.table-wrapper {
    background-color: #141414;
    padding: 20px;
    border-radius: 12px;
    color: #cdcdcd;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.table {
    border-collapse: separate;
    border-spacing: 0 5px;
    width: 100%;
}
.table thead th {
    font-weight: bold;
    text-align: left;
    padding: 12px;
    background: #050505;
    color: white;
    border: 0;
}
.table tbody tr {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.table tbody tr td {
   vertical-align: middle;
    padding: 12px;
    text-align: left;
    background: #1d1d1d;
    border: 0;
    color: #ffffff;
    font-size: 12px;
}
.table tbody tr:hover {
    opacity: 0.6;
	transition: all 0.4s;
}

/* Flag mygtukai */
#flagSelector .btn.active {
    background-color: #0d6efd;
    color: white;
}
#flagSelector .btn {
    margin-right: 5px;
}

#searchInput, 
#stationFilter, 
#cityFilter {
font-size: 12px;
    width: 100%;
    transition: all 0.2s;
    background-color: #ffffff;
    border: 0;
    color: #000000;
    border: solid 2px #ff9437;
}

/* kai paspaudi ant input */
#searchInput:focus, 
#stationFilter:focus, 
#cityFilter:focus {
    box-shadow: 0 0 8px rgba(13,110,253,0.3);
    border-color: #cc7222;
}

/* placeholder spalva */
#searchInput::placeholder,
#stationFilter::placeholder,
#cityFilter::placeholder {
    color: #ccc; /* arba white jei nori ir placeholder visiškai baltą */
    opacity: 1; /* kad nebūtų permatomas */
}

    /* Bendras mygtukų stilius */
    .btn-group .btn {
        background-color: #f5f5f5; /* šviesiai pilka */
        color: #333; /* tamsiai pilkas tekstas */
        border: 1px solid #ccc; /* švelnus border */
        border-radius: 4px; /* keturkampiai kampai */
        font-size: 0.85rem; /* mažesnis šriftas */
        padding: 6px 16px; /* ilgesni, ne per aukšti */
        display: flex;
        align-items: center;
        gap: 5px; /* tarp vėliavėlės ir teksto */
        transition: all 0.2s;
    }

    /* Hover efektas švelnus */
    .btn-group .btn:hover {
        background-color: #e0e0e0;
    }

    /* Aktyvus mygtukas tamsiai pilkas */
    .btn-group .btn.active {
        background-color: #555; /* tamsiai pilka */
        color: #fff; /* baltas tekstas */
        border-color: #444;
        font-weight: 600;
    }

    /* Vėliavėlė truputį didesnė */
    .fi {
        font-size: 1rem;
    }
	
	.btnas {
    color: white;
    background: #da0037;
    border: 0;
    opacity: 0.4;
    padding: 10px;
    font-size: 12px;
    margin-left: 5px;
}

.btnas.active {
	transition: all 1s;
	opacity: 10;
}

.btnas:hover {
	transition: all 1s;
	opacity: 10;
}

/* Carousel cards */
.carousel-item .card {
    background: #090909;
    color: #ffffff;
    text-align: center;
    padding: 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.carousel-item .card h5 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.carousel-item .card .d-flex {
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.carousel-item .card .d-flex div {
    min-width: 90px;
}
</style>


    <style>
/* Bendras select stilius */
#stationFilter, #cityFilter {
    appearance: none; /* paslepia default rodyklę */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #141414; 
    color: white;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px 40px 10px 15px; /* vieta rodyklei */
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    width: 100%;
}

/* hover efektas */
#stationFilter:hover, #cityFilter:hover {
    border-color: rgba(13,110,253,0.3;
}

/* focus efektas */
#stationFilter:focus, #cityFilter:focus {
    outline: none;
    border-color: #0dcaf0;
    box-shadow: 0 0 8px rgba(13,110,253,0.6);
}

/* custom rodyklė */
#stationFilter,
#cityFilter {
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

/* select options */
#stationFilter option, #cityFilter option {
    background: #141414;
    color: white;
}

/* Lentelės responsive stilius */
.fuel-table th, 
.fuel-table td {
    white-space: nowrap; /* kad tekstas nelūžinėtų */
}

/* Sticky header */
.fuel-table thead th {
    position: sticky;
    top: 0;
    background: #212529;
    z-index: 2;
}

/* Mobiliajame – mažesnis šriftas ir tarpai */
@media (max-width: 768px) {
  .fuel-table {
    font-size: 0.85rem;
  }
  .fuel-table th, 
  .fuel-table td {
    padding: 6px 8px;
  }
  .table-responsive {
    overflow-x: auto; /* leidžiam scroll */
    -webkit-overflow-scrolling: touch; /* sklandus scroll iOS */
  }
}

  .faq-section {
    max-width: 850px;
    margin: 50px auto;
    padding: 20px;
  }
  .faq-section h2 {
    color: #e6e9ef;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
  }
  .faq-intro {
    color: #9ca3af;
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 30px;
  }

  /* Accordion stilius */
  .accordion-item {
    background-color: #2b2f36;
    border: 1px solid #3d4148;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  }

  .accordion-button {
    background-color: #2b2f36;
    color: #d1d5db;
    font-weight: 500;
    padding: 15px 18px;
    transition: all 0.3s ease;
  }
  .accordion-button:hover {
    background-color: #353a42;
    color: #f3f4f6;
  }
  .accordion-button:not(.collapsed) {
    background-color: #3a4150;
    color: #60a5fa; /* akcentas */
  }
  .accordion-body {
    background-color: #24272d;
    color: #cbd5e1;
    padding: 18px;
    line-height: 1.6;
  }