body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    background-color: #ffffff;
    
    margin: 20px auto;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h1 {
    text-align: center;
}

label {
    display: block;
    margin-bottom: 10px;
}

input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.calculate-button {
    width: 48%;
    background-color: #007BFF; /* Blue color */
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.reset-button {
    width: 48%;
    background-color: green; /* green color */
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.calculate-button:hover, .reset-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.result {
    margin-top: 20px;
    padding: 10px;
        color: #FBF400; /* yellow text */
    border-radius: 13px;
}

.highlight {
    background-color: green; /* green highlight */
 
    
}
