/* Basic page styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    padding: 20px;
}

/* Inputs and labels */
label {
    margin-left: 5px;
}

/* Button styling */
button {
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #4CAF50; /* green */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

/* Button hover effect */
button:hover {
    background-color: #45a049;
}

/* Results text */
#result1, #result2 {
    font-weight: bold;
    margin-top: 10px;
}
