:root {
    --background: #06121d;
    --panel: rgba(14, 34, 48, 0.94);
    --panel-light: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.10);
    --text: #f2f8fa;
    --muted: #8fa9b8;
    --online: #29d69b;
    --offline: #ef6666;
    --navy: #102d40;
    --petrol: #087664;
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    font-family: Tahoma, Arial, sans-serif;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(24, 83, 110, 0.55),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(8, 118, 100, 0.35),
            transparent 35%
        ),
        var(--background);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 5%;
    border-bottom: 1px solid var(--border);
    background: rgba(6, 18, 29, 0.94);
    backdrop-filter: blur(15px);
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 16px;
    font-size: 19px;
    font-weight: 900;
    background:
        linear-gradient(145deg, #087664, #0d394d);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

h1 {
    margin: 0;
    font-size: clamp(21px, 3vw, 31px);
}

.topbar p {
    margin: 7px 0 0;
    color: var(--muted);
}

.connection-box {
    min-width: 220px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--panel-light);
}

.connection-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.connection-box small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    direction: ltr;
    text-align: right;
}

.connection-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #dba43d;
    box-shadow: 0 0 15px currentColor;
}

main {
    padding: 25px 5%;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 22px;
}

.summary-card,
.tank-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--panel);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.summary-card {
    padding: 18px;
}

.summary-card span {
    color: var(--muted);
}

.summary-card strong {
    display: block;
    margin-top: 8px;
    font-size: 26px;
}

.tank-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 20px;
}

.tank-card {
    overflow: hidden;
    padding: 19px;
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.card-header h2 {
    margin: 0;
    font-size: 22px;
}

.serial-number {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    direction: ltr;
    text-align: right;
}

.online-badge {
    padding: 7px 11px;
    border-radius: 50px;
    color: #ff9e9e;
    background: rgba(239, 102, 102, 0.14);
    font-size: 12px;
    font-weight: 700;
}

.online-badge.online {
    color: #5ceab9;
    background: rgba(41, 214, 155, 0.14);
}

.tank-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 245px;
    margin: 10px 0 16px;
}

.tank {
    position: relative;
    width: 150px;
    height: 215px;
    overflow: hidden;
    border: 7px solid #b9ccd5;
    border-radius: 70px 70px 27px 27px;
    background: #041019;
    box-shadow:
        inset 0 0 25px rgba(0, 0, 0, 0.8),
        0 17px 28px rgba(0, 0, 0, 0.25);
}

.tank::after {
    position: absolute;
    inset: 11px;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 58px 58px 18px 18px;
    content: "";
    pointer-events: none;
}

.probe-head {
    position: absolute;
    top: 8px;
    left: 50%;
    z-index: 7;
    width: 42px;
    height: 24px;
    border-radius: 7px;
    background: #e6eff2;
    transform: translateX(-50%);
}

.probe-rod {
    position: absolute;
    top: 24px;
    bottom: 5px;
    left: 50%;
    z-index: 6;
    width: 5px;
    background: linear-gradient(
        90deg,
        #9db1bb,
        white,
        #8297a2
    );
    transform: translateX(-50%);
}

.fuel-liquid {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 0;
    transition: height 0.7s ease;
}

.fuel-liquid::before {
    position: absolute;
    top: -6px;
    right: 0;
    left: 0;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.27);
    content: "";
}

.fuel-liquid.diesel {
    background: linear-gradient(
        180deg,
        #edc75b,
        #9b6b17
    );
}

.fuel-liquid.gasoline95 {
    background: linear-gradient(
        180deg,
        #f06b6b,
        #9d2626
    );
}

.fuel-liquid.gasoline91 {
    background: linear-gradient(
        180deg,
        #4dddb0,
        #11735b
    );
}

.water-liquid {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    height: 0;
    background: rgba(42, 157, 219, 0.88);
    transition: height 0.7s ease;
}

.percent-box strong {
    display: block;
    font-size: 40px;
    direction: ltr;
}

.percent-box span {
    color: var(--muted);
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.metric {
    min-height: 69px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
}

.metric span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 12px;
}

.metric strong {
    font-size: 17px;
}

.reading-time {
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
}

.error-message {
    min-height: 16px;
    margin-top: 8px;
    color: #ff9e9e;
    font-size: 12px;
}

.raw-response {
    overflow: hidden;
    margin-top: 8px;
    padding: 8px;
    border-radius: 8px;
    color: #7594a5;
    background: rgba(0, 0, 0, 0.17);
    font-family: monospace;
    font-size: 10px;
    direction: ltr;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.loading {
    grid-column: 1 / -1;
    padding: 50px;
    text-align: center;
    color: var(--muted);
}

footer {
    padding: 22px;
    color: #7894a3;
    text-align: center;
}

footer code {
    direction: ltr;
}

@media (max-width: 1050px) {
    .tank-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .topbar {
        position: static;
        flex-direction: column;
        align-items: stretch;
    }

    .connection-box {
        width: 100%;
    }

    .summary-grid,
    .tank-grid {
        grid-template-columns: 1fr;
    }

    .tank-section {
        gap: 20px;
    }
}


/* ======================================
   تصميم الخزان الأسطواني الأفقي
   ====================================== */

.horizontal-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 245px;
    margin: 18px 0;
}

.horizontal-tank {
    position: relative;
    width: min(100%, 330px);
    height: 175px;
    overflow: hidden;

    border: 8px solid #b9d0da;
    border-radius: 88px;

    background:
        linear-gradient(
            180deg,
            #071823,
            #031019
        );

    box-shadow:
        inset 0 0 28px rgba(0, 0, 0, 0.85),
        0 18px 32px rgba(0, 0, 0, 0.3);
}

.horizontal-tank::before,
.horizontal-tank::after {
    position: absolute;
    top: 13px;
    bottom: 13px;
    z-index: 8;
    width: 17px;
    border: 3px solid rgba(
        220,
        237,
        244,
        0.7
    );
    border-radius: 50%;
    content: "";
}

.horizontal-tank::before {
    right: 13px;
}

.horizontal-tank::after {
    left: 13px;
}

.horizontal-fuel {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 0;

    transition:
        height 0.8s ease;
}

.horizontal-fuel::before {
    position: absolute;
    top: -5px;
    right: 0;
    left: 0;
    height: 10px;
    border-radius: 50%;
    background:
        rgba(255, 255, 255, 0.27);
    content: "";
}

.horizontal-fuel.diesel,
.fuel-bar.diesel {
    background:
        linear-gradient(
            180deg,
            #f2d05f,
            #b47a16
        );
}

.horizontal-fuel.gasoline95,
.fuel-bar.gasoline95 {
    background:
        linear-gradient(
            180deg,
            #f37575,
            #a72d2d
        );
}

.horizontal-fuel.gasoline91,
.fuel-bar.gasoline91 {
    background:
        linear-gradient(
            180deg,
            #52e4b6,
            #148069
        );
}

.horizontal-water {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    height: 0;

    background:
        linear-gradient(
            180deg,
            rgba(58, 174, 239, 0.95),
            rgba(16, 99, 165, 0.95)
        );

    transition:
        height 0.8s ease;
}

.horizontal-probe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 9;
    width: 50px;
    transform: translateX(-50%);
}

.probe-controller {
    position: absolute;
    top: 8px;
    left: 50%;
    display: grid;
    width: 49px;
    height: 30px;
    place-items: center;

    border-radius: 8px;
    color: #173342;
    background: #eaf4f7;
    font-size: 10px;
    font-weight: 900;

    transform: translateX(-50%);
}

.probe-stick {
    position: absolute;
    top: 35px;
    bottom: 9px;
    left: 50%;
    width: 5px;

    background:
        linear-gradient(
            90deg,
            #8da4ae,
            #ffffff,
            #8298a2
        );

    transform: translateX(-50%);
}

.probe-float {
    position: absolute;
    left: 50%;
    z-index: 10;
    width: 31px;
    height: 13px;

    border: 3px solid #eaf4f7;
    border-radius: 50%;
    background: #617b87;

    transform: translateX(-50%);
}

.fuel-float {
    top: 57%;
}

.water-float {
    bottom: 14px;
    width: 24px;
    height: 10px;
    border-color: #61c9ff;
}

.tank-highlight {
    position: absolute;
    inset: 9px;
    z-index: 12;

    border: 1px solid
        rgba(255, 255, 255, 0.14);

    border-radius: 75px;
    pointer-events: none;
}

.tank-shadow {
    position: absolute;
    inset: 0;
    z-index: 11;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.22),
            transparent 20%,
            transparent 80%,
            rgba(0, 0, 0, 0.22)
        );

    pointer-events: none;
}

.level-bars {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.level-row {
    display: grid;
    grid-template-columns:
        52px 1fr 105px;

    align-items: center;
    gap: 9px;

    color: var(--muted);
    font-size: 12px;
}

.level-row b {
    color: var(--text);
    text-align: left;
    direction: ltr;
}

.bar {
    height: 8px;
    overflow: hidden;
    border-radius: 30px;
    background:
        rgba(255, 255, 255, 0.08);
}

.bar-fill {
    height: 100%;
    border-radius: 30px;
    transition:
        width 0.8s ease;
}

.water-bar {
    background:
        linear-gradient(
            90deg,
            #176da8,
            #4fc3ff
        );
}

.highlight-metric {
    border-color:
        rgba(41, 214, 155, 0.25);

    background:
        rgba(41, 214, 155, 0.07);
}

@media (max-width: 1250px) {
    .tank-grid {
        grid-template-columns:
            repeat(2, minmax(330px, 1fr));
    }
}

@media (max-width: 760px) {
    .tank-grid {
        grid-template-columns: 1fr;
    }

    .horizontal-visual {
        flex-direction: column;
        gap: 14px;
    }

    .horizontal-tank {
        width: 100%;
        max-width: 350px;
    }

    .percent-box {
        text-align: center;
    }
}

/* PETRO_B_FUEL_COLORS_START */

/* ==================================================
   ألوان الوقود
   diesel      = أصفر
   gasoline95  = أحمر
   gasoline91  = أخضر
   ================================================== */


/* ==========================================
   الديزل — أصفر
   ========================================== */

.horizontal-fuel.diesel,
.fuel-liquid.diesel,
.fuel-bar.diesel,
.bar-fill.diesel {
    background:
        linear-gradient(
            180deg,
            #ffe96a 0%,
            #ffd21f 35%,
            #e2a900 72%,
            #9d7000 100%
        ) !important;

    box-shadow:
        inset 0 5px 12px rgba(255, 255, 255, 0.38),
        inset 0 -10px 20px rgba(95, 61, 0, 0.32),
        0 0 18px rgba(255, 205, 31, 0.22);
}

.horizontal-fuel.diesel::before,
.fuel-liquid.diesel::before {
    background:
        rgba(255, 248, 180, 0.70) !important;
}

.tank-card:has(.horizontal-fuel.diesel)
.highlight-metric {
    border-color:
        rgba(255, 210, 31, 0.52) !important;

    background:
        rgba(255, 210, 31, 0.09) !important;
}

.tank-card:has(.horizontal-fuel.diesel)
.highlight-metric strong,

.tank-card:has(.horizontal-fuel.diesel)
.percent-box strong {
    color: #ffd629 !important;
}


/* ==========================================
   بنزين 95 — أحمر
   ========================================== */

.horizontal-fuel.gasoline95,
.fuel-liquid.gasoline95,
.fuel-bar.gasoline95,
.bar-fill.gasoline95 {
    background:
        linear-gradient(
            180deg,
            #ff7777 0%,
            #ff3030 34%,
            #d50000 70%,
            #830000 100%
        ) !important;

    box-shadow:
        inset 0 5px 12px rgba(255, 255, 255, 0.30),
        inset 0 -10px 20px rgba(70, 0, 0, 0.38),
        0 0 18px rgba(255, 48, 48, 0.22);
}

.horizontal-fuel.gasoline95::before,
.fuel-liquid.gasoline95::before {
    background:
        rgba(255, 185, 185, 0.60) !important;
}

.tank-card:has(.horizontal-fuel.gasoline95)
.highlight-metric {
    border-color:
        rgba(255, 68, 68, 0.52) !important;

    background:
        rgba(255, 45, 45, 0.09) !important;
}

.tank-card:has(.horizontal-fuel.gasoline95)
.highlight-metric strong,

.tank-card:has(.horizontal-fuel.gasoline95)
.percent-box strong {
    color: #ff5555 !important;
}


/* ==========================================
   بنزين 91 — أخضر
   ========================================== */

.horizontal-fuel.gasoline91,
.fuel-liquid.gasoline91,
.fuel-bar.gasoline91,
.bar-fill.gasoline91 {
    background:
        linear-gradient(
            180deg,
            #7cf05a 0%,
            #28cf37 34%,
            #079125 70%,
            #005818 100%
        ) !important;

    box-shadow:
        inset 0 5px 12px rgba(255, 255, 255, 0.30),
        inset 0 -10px 20px rgba(0, 62, 17, 0.38),
        0 0 18px rgba(35, 213, 76, 0.22);
}

.horizontal-fuel.gasoline91::before,
.fuel-liquid.gasoline91::before {
    background:
        rgba(190, 255, 175, 0.62) !important;
}

.tank-card:has(.horizontal-fuel.gasoline91)
.highlight-metric {
    border-color:
        rgba(41, 217, 78, 0.52) !important;

    background:
        rgba(31, 205, 67, 0.09) !important;
}

.tank-card:has(.horizontal-fuel.gasoline91)
.highlight-metric strong,

.tank-card:has(.horizontal-fuel.gasoline91)
.percent-box strong {
    color: #46e667 !important;
}


/* ==========================================
   تحسين سطح الوقود داخل الخزان
   ========================================== */

.horizontal-fuel,
.fuel-liquid {
    overflow: visible;
    transition:
        height 0.8s ease,
        background 0.4s ease !important;
}

.horizontal-fuel::after {
    position: absolute;
    top: 4px;
    right: 8%;
    left: 8%;
    height: 18px;

    border-radius: 50%;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.28),
            rgba(255, 255, 255, 0)
        );

    content: "";
    pointer-events: none;
}


/* ==========================================
   شريط مستوى الوقود
   ========================================== */

.fuel-bar,
.bar-fill {
    transition:
        width 0.8s ease,
        background 0.4s ease !important;
}

.level-row .bar {
    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.06);

    background:
        rgba(255, 255, 255, 0.08);
}


/* ==========================================
   الإطار الخارجي للخزان
   ========================================== */

.horizontal-tank {
    border-color: #c6d9e1 !important;

    background:
        linear-gradient(
            180deg,
            #0b1d28 0%,
            #04121b 100%
        ) !important;

    box-shadow:
        inset 0 0 34px rgba(0, 0, 0, 0.88),
        0 20px 35px rgba(0, 0, 0, 0.32) !important;
}


/* ==========================================
   جعل المياه أزرق واضح
   ========================================== */

.horizontal-water,
.water-liquid,
.water-bar {
    background:
        linear-gradient(
            180deg,
            #5ed1ff 0%,
            #1c9de0 48%,
            #08669f 100%
        ) !important;

    box-shadow:
        inset 0 4px 8px rgba(255, 255, 255, 0.25);
}


/* ==========================================
   دعم المتصفحات التي لا تدعم :has
   بواسطة الكلاسات الموجودة مباشرة
   ========================================== */

.diesel + .tank-highlight {
    border-color:
        rgba(255, 216, 60, 0.20);
}

.gasoline95 + .tank-highlight {
    border-color:
        rgba(255, 80, 80, 0.20);
}

.gasoline91 + .tank-highlight {
    border-color:
        rgba(60, 225, 90, 0.20);
}


/* ==========================================
   الهواتف
   ========================================== */

@media (max-width: 760px) {
    .horizontal-tank {
        height: 165px;
    }

    .tank-card {
        padding: 16px;
    }
}

/* PETRO_B_FUEL_COLORS_END */

/* PETRO_B_LEVEL_DISPLAY_START */


/* =========================================
   صندوق مستوى الوقود الفعلي
   ========================================= */

.actual-level-box {
    display: grid;
    gap: 5px;
    margin-top: 16px;
    padding: 13px 15px;

    border:
        1px solid
        rgba(88, 205, 255, 0.24);

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(26, 111, 149, 0.16),
            rgba(10, 40, 55, 0.14)
        );
}

.actual-level-box span {
    color: #9ec4d5;
    font-size: 12px;
}

.actual-level-box strong {
    color: #ffffff;
    font-size: 27px;
    direction: ltr;
    text-align: right;
}

.actual-level-box small {
    color: #6f9bad;
    font-size: 11px;
}


/* =========================================
   جعل جسم الخزان داكنًا ليظهر السائل
   ========================================= */

.horizontal-tank {
    background:
        linear-gradient(
            180deg,
            #152731 0%,
            #07131c 50%,
            #020b11 100%
        ) !important;
}

.horizontal-tank::before,
.horizontal-tank::after {
    background:
        rgba(255, 255, 255, 0.025);
}


/* إزالة الأزرق الثابت القديم */

.horizontal-tank > .tank-shadow {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.34),
            transparent 19%,
            transparent 81%,
            rgba(0, 0, 0, 0.34)
        ) !important;
}


/* =========================================
   إبراز ألوان الوقود داخل الخزان
   ========================================= */

.horizontal-fuel {
    opacity: 1 !important;
    z-index: 2 !important;

    transition:
        height 0.75s ease !important;
}

.horizontal-fuel.diesel {
    background:
        linear-gradient(
            180deg,
            #fff07a 0%,
            #ffd51f 18%,
            #d89d00 68%,
            #855e00 100%
        ) !important;
}

.horizontal-fuel.gasoline95 {
    background:
        linear-gradient(
            180deg,
            #ff7777 0%,
            #f52222 20%,
            #bd0000 68%,
            #690000 100%
        ) !important;
}

.horizontal-fuel.gasoline91 {
    background:
        linear-gradient(
            180deg,
            #7df35e 0%,
            #27cf3a 20%,
            #078623 68%,
            #004b14 100%
        ) !important;
}


/* سطح السائل */

.horizontal-fuel::before {
    top: -4px !important;
    height: 9px !important;

    background:
        rgba(
            255,
            255,
            255,
            0.56
        ) !important;

    box-shadow:
        0 0 12px
        rgba(
            255,
            255,
            255,
            0.25
        );
}


/* =========================================
   مقياس فارغ وممتلئ
   ========================================= */

.tank-scale {
    position: absolute;
    right: 24px;
    z-index: 20;

    padding: 3px 7px;

    border-radius: 20px;

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );

    background:
        rgba(
            0,
            0,
            0,
            0.30
        );

    font-size: 9px;
    pointer-events: none;
}

.top-scale {
    top: 17px;
}

.bottom-scale {
    bottom: 17px;
}


/* =========================================
   مؤشر المستوى الكبير
   ========================================= */

.level-indicator {
    margin-bottom: 15px;
    padding: 13px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    border-radius: 13px;

    background:
        rgba(
            255,
            255,
            255,
            0.025
        );
}

.level-indicator-header {
    display: flex;
    align-items: center;
    justify-content:
        space-between;
    gap: 12px;

    margin-bottom: 10px;
}

.level-indicator-header span {
    color: #94b8c8;
    font-size: 12px;
}

.level-indicator-header b {
    color: #ffffff;
    font-size: 16px;
    direction: ltr;
}

.large-level-bar {
    position: relative;
    height: 23px;
    overflow: hidden;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );

    border-radius: 20px;

    background:
        rgba(
            0,
            0,
            0,
            0.28
        );
}

.large-level-fill {
    height: 100%;
    min-width: 2px;

    border-radius: 20px;

    transition:
        width 0.75s ease;
}

.large-level-fill.diesel {
    background:
        linear-gradient(
            90deg,
            #9b7000,
            #ffd51f,
            #fff07a
        );
}

.large-level-fill.gasoline95 {
    background:
        linear-gradient(
            90deg,
            #720000,
            #e80000,
            #ff6868
        );
}

.large-level-fill.gasoline91 {
    background:
        linear-gradient(
            90deg,
            #005016,
            #08a22b,
            #62ef4d
        );
}

.level-marker {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: grid;
    place-items: center;

    color: white;
    font-size: 11px;
    font-weight: 900;

    text-shadow:
        0 1px 4px
        rgba(0, 0, 0, 0.95);

    direction: ltr;
}


/* =========================================
   بطاقة مستوى الوقود
   ========================================= */

.fuel-level-metric {
    border-color:
        rgba(
            87,
            202,
            255,
            0.27
        ) !important;

    background:
        rgba(
            34,
            154,
            207,
            0.07
        ) !important;
}

.fuel-level-metric strong {
    color: #ffffff;
    font-size: 20px;
    direction: ltr;
}


/* =========================================
   تحذير المعايرة
   ========================================= */

.calibration-warning {
    margin-top: 12px;
    padding: 10px 12px;

    border:
        1px solid
        rgba(
            255,
            190,
            55,
            0.25
        );

    border-radius: 11px;

    color: #e7c775;

    background:
        rgba(
            255,
            183,
            34,
            0.06
        );

    font-size: 11px;
    line-height: 1.7;
}


/* =========================================
   ضبط عوامة الوقود
   ========================================= */

.fuel-float {
    top: auto !important;

    transition:
        bottom 0.75s ease;
}


/* =========================================
   الهاتف
   ========================================= */

@media (max-width: 760px) {
    .actual-level-box strong {
        font-size: 23px;
    }

    .level-indicator-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* PETRO_B_LEVEL_DISPLAY_END */
