body {
    font-family: Arial, sans-serif;
    background-color: #f3f3f3;
}

.calculator {
    background-color: #fff;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section {
    margin-bottom: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-top: 10px;
}

input {
    width: 90%;
    padding: 5px;
    margin-top: 5px;
    margin-bottom: 10px;
}

button {
    width:35%;
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius:15px;
}

button:hover {
    background-color: #0056b3;
}

#resetButton {
    background-color: red; /* Green background for the reset button */
    color: #fff; /* Dark green text color */
    margin-top: 10px;
    border: none;
}

#resetButton:hover {
    background-color: #c3e6cb; /* Lighter green background on hover */
}

/* Green font color for the result */
#blowerEfficiencyResult {
    color: #155724;
    font-weight: bold;
    background-color:yellow;
    font-size:25px;
    width:380px;
}

.error {
    color: red;
    font-weight: bold;
}
