/* 
 * Universal Base Styles for Area Calculator Builder
 * Only loaded when a calculator shortcode is present on the page.
 */

.acb-calculator {
    /* Scoped container baseline */
    display: block;
    width: 100%;
    margin: 1rem 0;
    font-family: inherit;
    box-sizing: border-box;
}

.acb-calculator *,
.acb-calculator *::before,
.acb-calculator *::after {
    box-sizing: border-box;
}

/* Base form resets strictly isolated to the calculator container */
.acb-calculator input,
.acb-calculator select,
.acb-calculator textarea {
    max-width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.acb-calculator button {
    cursor: pointer;
    padding: 0.5rem 1rem;
}
