.elementor-1119 .elementor-element.elementor-element-169022b{--display:flex;--background-transition:0.3s;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS *//* Basic calculator styling */
.wpforms-container .wpforms-form {
    background-color: #333; /* Calculator background */
    color: #fff; /* Text color */
    font-family: 'Lucida Console', 'Courier New', monospace; /* Monospace font */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
}

/* Style the input fields */
.wpforms-container .wpforms-field {
    background-color: #222; /* Field background */
    border: none;
    color: #fff; /* Field text color */
    padding: 10px;
    margin-bottom: 10px; /* Space between fields */
}

/* Style the submit button */
.wpforms-container .wpforms-submit {
    background-color: #ff9500; /* 'Equals' button color */
    color: #fff;
    padding: 15px 30px;
    font-size: 18px; /* Larger font size */
    border: none;
    border-radius: 5px; /* Rounded corners */
}

/* Add hover effect to the submit button */
.wpforms-container .wpforms-submit:hover {
    background-color: #ffa500; /* Slightly lighter on hover */
}


/* Apply monospace font to the form elements */
.wpforms-container .wpforms-form,
.wpforms-container .wpforms-field,
.wpforms-container .wpforms-field input,
.wpforms-container .wpforms-field textarea {
    font-family: 'Lucida Console', Monaco, monospace;
    font-size: 16px; /* Adjust size as needed */
}

/* Style the input fields to look like calculator screens */
.wpforms-container .wpforms-field input,
.wpforms-container .wpforms-field textarea {
    background-color: #000; /* Dark background */
    color: #4CAF50; /* Green font color typical of calculator displays */
    border: none;
    padding: 10px;
    text-align: right; /* Align text to the right like a calculator screen */
}/* End custom CSS */