.fuel-gauge-container {
    padding-top: 10px;
    position: relative;
    text-align: left;
}

.fuel-gauge {
    position: relative;
    width: 200px;
    height: 100px;
    background: #000; /* Fundo escuro para o medidor */
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(51,51,51,1) 99%);
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border: 0px solid; /* Borda para combinar com o fundo */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1); /* Sombra para dar um efeito de profundidade */
}

.fuel-needle {
    position: absolute;
    width: 4px;
    height: 62px;
    background: rgb(255, 36, 36); /* Cor da agulha laranja */
    bottom: 20px; /* Ajuste para a base da agulha */
    transform-origin: bottom center;
    transform: rotate(-80deg);
    transition: transform 0.3s ease-in-out;
    z-index: 1;
}

.fuel-center-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgb(0,0,0);
    background: radial-gradient(circle, rgba(102,102,102,1) 0%, rgba(0,0,0,1) 99%);
    border-radius: 50%;
    z-index: 2;
    bottom: 10px;
}

.fuel-labels {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.fuel-label {
    position: absolute;
    font-size: 14px;
    font-weight: bold;
    color: white; /* Cor branca para os rótulos */
    font-family: Arial, sans-serif; /* Fonte para combinar com a imagem */
}

.fuel-gauge-area input[type=range] {
    -webkit-appearance: none;
    width: 200px;  
    height: 8px;
    margin-top: 10px;
    background: #ddd;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
}

.fuel-gauge-area input[type=range]:hover {
    opacity: 1;
}

.fuel-gauge-area input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #333;
    cursor: pointer;
    border-radius: 50%;
}

.fuel-gauge-area input[type=range]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #333;
    cursor: pointer;
    border-radius: 50%;
}

.fuel-gauge-area input[type=range]::-ms-thumb {
    width: 25px;
    height: 25px;
    background: #333;
    cursor: pointer;
    border-radius: 50%;
}