body{
background:#080808;
color:white;
font-family:sans-serif;
text-align:center;
padding-top:80px;
}

.title{
font-size:40px;
margin-bottom:30px;
}

.speed-container{
position:relative;
width:300px;
margin:auto;
}

.speed-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
font-size:50px;
font-weight:bold;
}

.unit{
font-size:20px;
margin-left:5px;
}

.progress-container{
width:300px;
height:8px;
background:#333;
margin:30px auto;
border-radius:10px;
overflow:hidden;
}

#progress{
height:100%;
width:0%;
background:#ea580c;
transition: width 0.6s ease;
}

button{
padding:12px 25px;
background:#ea580c;
border:none;
border-radius:8px;
color:white;
cursor:pointer;
font-size:16px;
}

#gaugeLabel{
margin-top:10px;
font-size:16px;
color:#aaa;
letter-spacing:1px;
}

.results-table{
margin:40px auto;
border-collapse:collapse;
width:300px;
font-size:16px;
}

.results-table th,
.results-table td{
padding:10px 15px;
border-bottom:1px solid #333;
}

.results-table th{
text-align:left;
color:#aaa;
}

.results-table td{
text-align:right;
color:white;
}

button:disabled{
opacity:0.5;
cursor:not-allowed;
background:#444;
}