/* FITNESS MONITOR - DESERT THEME */
#fitness-overlay { 
    position: absolute; 
    top: 25px; 
    right: 25px; 
    width: 200px; 
    background: rgba(252, 250, 247, 0.9); 
    backdrop-filter: blur(10px); 
    border: 1px solid #d6cdc4; 
    padding: 15px; 
    font-family: 'Space Mono'; 
    border-radius: 4px; 
    pointer-events: auto; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fit-header { 
    font-size: 11px; 
    font-weight: bold; 
    color: var(--gold); 
    border-bottom: 1px solid #eee7e0; 
    margin-bottom: 12px; 
    padding-bottom: 6px; 
    letter-spacing: 2px; 
    text-transform: uppercase;
}

.fit-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 8px; 
    font-size: 10px; 
    color: #8f8074; 
    font-weight: bold;
}

.fit-bar { 
    width: 90px; 
    height: 6px; 
    background: #eee7e0; 
    border-radius: 3px; 
    overflow: hidden; 
}

.fit-bar div { 
    height: 100%; 
    background: var(--cyan); 
    transition: width 0.2s cubic-bezier(0.1, 0.7, 1.0, 0.1); 
}

#fitness-overlay input[type=range] { 
    width: 90px; 
    height: 3px; 
    background: #eee7e0;
    -webkit-appearance: none;
    border-radius: 2px;
}

#fitness-overlay input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
}