.fuelcontainer {
    display: flex;
    place-items: center;
    justify-content: center;
    padding: 1rem 0;
    background-color: ;
}

.fuelcontainera {
    width: 95%;
    background: #111827;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.fuelcontainera h1 {
    text-align: center;
    color: #38bdf8;
    margin-bottom: 10px;
}

.fuelcontainernav {
    display: flex;
    background-color: ;
    padding-bottom: 1rem;
    align-items: center;
    justify-content: start;
}

.fuellive-widget {
    background-color: ;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.fuelbars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 40px;
}

.fuelbars span {
    width: 6px;
    border-radius: 20px;
    background: linear-gradient( to top, #22c55e, #4ade80);
    animation: wave 1s infinite ease-in-out;
}

.fuelbars span:nth-child(1) {
    height: 14px;
    animation-delay: 0s;
}

.fuelbars span:nth-child(2) {
    height: 22px;
    animation-delay: 0.1s;
}

.fuelbars span:nth-child(3) {
    height: 32px;
    animation-delay: 0.2s;
}

.fuelbars span:nth-child(4) {
    height: 22px;
    animation-delay: 0.3s;
}

.fuelbars span:nth-child(5) {
    height: 14px;
    animation-delay: 0.4s;
}

@keyframes wave {
    0%,
    100% {
        transform: scaleY(.5);
        opacity: .5;
    }
    50% {
        transform: scaleY(1.2);
        opacity: 1;
    }
}

.fueltop-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: ;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.fuelcontainera input {
    width: 25rem;
    padding: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: ;
    color: black;
}

.fuelcontainera button {
    width: 10rem;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: #38bdf8;
    cursor: pointer;
    font-weight: bold;
}

.fueldisterror {
    text-align: center;
    font-size: 1rem;
    padding: 0.3rem 0;
}

.fuelcontainera button:hover {
    background: #0ea5e9;
}

.fuelcontainera .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.fuelcontainera .fuelpricecard {
    background: #151e31;
    padding: 15px;
    border-radius: 12px;
    transition: 0.3s;
}

.fuelpricecard:hover {
    transform: translateY(-3px);
}

.fuelmore {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
}

.plussign {
    font-size: 2rem;
    height: 3rem;
    width: 3rem;
    font-weight: 600;
    color: rgb(27, 26, 26);
    background-color: rgb(238, 232, 232);
    border-radius: 50%;
    text-align: center;
}

.plusmore {
    font-size: 1.1rem;
    padding-top: 0.5rem;
    color: white;
}

.fuelcontainera .district {
    font-size: 16px;
    font-weight: bold;
    color: #facc15;
}

.fuelcontainera .price {
    margin-top: 8px;
    font-size: 14px;
    color: #cbd5e1;
}

.fuelcontainera .fuel {
    margin-top: 6px;
    font-size: 18px;
    font-weight: bold;
    color: #22c55e;
}

.fuelcontainera .meta {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 10px;
    text-align: center;
}

@media (max-width: 600px) {
    .top-bar {
        flex-direction: column;
    }
    .fuelcontainera h1 {
        font-size: 1.1rem;
    }
    .fueltop-bar {
        flex-direction: column;
        gap: 10px;
        background-color: ;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }
    .fuelcontainera input {
        width: 14rem;
        padding: 5px;
        border-radius: 5px;
        border: none;
        outline: none;
    }
    .fuelcontainera button {
        width: 7rem;
        padding: 3px;
        border-radius: 5px;
        font-size: 0.9rem;
        font-weight: 500;
    }
    .fuellive-widget {
        padding: 12px 16px;
        gap: 6px;
    }
    .fuellive-text {
        font-size: 15px;
    }
    .fuelbars {
        height: 18px;
    }
    .fuelbars span {
        width: 4px;
    }
    .fuelbars span:nth-child(1) {
        height: 8px;
    }
    .fuelbars span:nth-child(2) {
        height: 16px;
    }
    .fuelbars span:nth-child(3) {
        height: 26px;
    }
    .fuelbars span:nth-child(4) {
        height: 16px;
    }
    .fuelbars span:nth-child(5) {
        height: 8px;
    }
}