
body{
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 40px;
    background-color: white
}

.converter-box {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 20px 30px;
    background-color: #f9f9f9;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

input[type="number"]{
    padding: 6px;
    width: 70px;
   text-align: right;
   font-size:16px;
   margin-right: 5px;
}

#unitLabel{
    font-size: 16px;
    color:#333;

}

.convert-to{
    margin-top: 20px;
    border: 1px solid #aaa;
    padding: 10px;
    background-color: white;
    display: inline-block;
    text-align: left;
}

.convert-to p {
    margin: 0 0 5px 0;
    font-weight: bold;
}

button{
   display: block;
   width: 100%;
   background-color: #777;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 15px;
    font-size: 16px;
    cursor: pointer
}
button:hover{
    background-color: #555;
}

#result{
    margin-top: 20px;
    font-size: 15px;
    color: #333;
}

