.tank-view {
    position: relative;
    height: 300px;
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-divider);
    border-radius: var(--mud-shape-default);
}

.tank-meta b {
    color: var(--mud-palette-text-primary);
}

.bottle {
    position: absolute;
    inset: 8px;
    border-radius: var(--mud-shape-default);
    background: radial-gradient(120px 70px at 25% 10%, rgba(255,255,255,.18), rgba(255,255,255,0) 60%), linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.02) 14%, rgba(0,0,0,.12) 70%, rgba(0,0,0,.18));
    border: 2px solid var(--mud-palette-divider);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), inset 0 14px 24px rgba(255,255,255,.06), inset 0 -12px 20px rgba(0,0,0,.22);
}

    .bottle::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(180deg, var(--chemTint), transparent 65%);
        mix-blend-mode: color;
    }

.liquid {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    height: var(--fill);
    background: linear-gradient(180deg, var(--chemA), var(--chemB) 40%, var(--chem));
    border-radius: 10px;
    box-shadow: inset 0 10px 18px rgba(255,255,255,.08), inset 0 -18px 22px rgba(0,0,0,.2);
    transition: height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.meniscus {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% - var(--fill) - 14px);
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(60% 120% at 50% -40%, rgba(255,255,255,.55), rgba(255,255,255,0) 70%);
    mix-blend-mode: screen;
    opacity: 0.35;
}

.liquid-shade {
    position: absolute;
    inset: 8px;
    mix-blend-mode: soft-light;
}

.tank-meta {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: var(--mud-palette-text-secondary);
}


.tankCard {
    position: relative;
    width: 220px;
    padding: 12px;
}

.liquid {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--fill);
    background: linear-gradient(180deg, var(--chemA), var(--chemB) 40%, var(--chem));
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: height .35s ease;
}

.meniscus {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - var(--fill));
    height: 4px;
    border-radius: 50%;
    opacity: .25;
    background: #fff;
    mix-blend-mode: screen;
}

.liquidShade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


.bottle {
    position: absolute;
    inset: 0;
    border-radius: 16px 16px 12px 12px;
    background: radial-gradient(120px 70px at 25% 10%, rgba(255, 255, 255, .20), rgba(255, 255, 255, 0) 60%), linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .02) 14%, rgba(0, 0, 0, .12) 70%, rgba(0, 0, 0, .18)), linear-gradient(180deg, #f7f8fb1a, #c9cfdb12 36%, #8c93a31a 70%, #5b63741f);
    border: 2px solid #46506a;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06), inset 0 18px 32px rgba(255, 255, 255, .08), inset 0 -14px 28px rgba(0, 0, 0, .24), 0 6px 18px rgba(0, 0, 0, .35);
}

.neck {
    position: absolute;
    left: calc(50% - 36px);
    top: -30px;
    width: 72px;
    height: 32px;
    border: 2px solid #46506a;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    background: #cfd6e31f;
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, .1);
}

.cap {
    position: absolute;
    left: calc(50% - 46px);
    top: -46px;
    width: 92px;
    height: 26px;
    border-radius: 12px;
    background: linear-gradient(180deg, #32394e, #1e2333);
    border: 2px solid #46506a;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, .08);
}

.ticks {
    position: absolute;
    right: 6px;
    top: 16px;
    bottom: 16px;
    width: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #a8b0c5;
    font-size: 11px;
    opacity: .8;
}

.tick {
    display: flex;
    align-items: center;
    gap: 6px;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .5));
}

.tick:before {
    content: "";
    display: block;
    width: 14px;
    height: 1px;
    background: #a8b0c5;
}

.sliderV {
    width: 100%;
    margin-top: 140px;
}


.barWrap {
    height: 6px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.barFill {
    height: 100%;
    width: 50%;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    #mapContainer {
        height: 200px;
    }

    .tank-view {
        height: 120px;
    }

    .chem-card {
        width: 150px;
    }
}