/* Sales Tax / VAT Calculator Styles - Finance/Commerce Theme */
.calcufacil-sales_tax_calculator.calcufacil-container {
    max-width: 900px; margin: 20px auto; background: #fff; padding: 20px;
    border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex; flex-wrap: wrap; gap: 30px; font-family: Arial, sans-serif;
}
.calcufacil-sales_tax_calculator h3 {
    width: 100%; text-align: center; color: #198754; /* Green */
    margin-bottom: 20px; font-size: 24px;
}
.calcufacil-sales_tax_calculator .calcufacil-left,
.calcufacil-sales_tax_calculator .calcufacil-right {
    flex: 1; min-width: 300px;
}
/* Form */
.calcufacil-sales_tax_calculator .calculator-form h2 { font-size: 20px; color: #198754; margin-bottom: 15px; }
.calcufacil-sales_tax_calculator .input-group { margin-bottom: 18px; }
.calcufacil-sales_tax_calculator label { display: block; font-weight: bold; color: #333; margin-bottom: 5px; font-size: 14px; }
.calcufacil-sales_tax_calculator input[type="number"] {
    width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px;
    box-sizing: border-box; font-size: 16px; background: #f9f9f9;
}
.calcufacil-sales_tax_calculator .radio-group.inline > label:first-of-type { /* Main label */ margin-bottom: 10px; }
.calcufacil-sales_tax_calculator .radio-group.inline label.checkbox-label, /* Reuse style if needed */
.calcufacil-sales_tax_calculator .radio-group.inline label {
    display: inline-block; margin-right: 15px; font-weight: normal; font-size: 14px; cursor: pointer;
}
.calcufacil-sales_tax_calculator .radio-group.inline input[type="radio"] { margin-right: 4px; vertical-align: middle; }

.calcufacil-sales_tax_calculator button {
    background-color: #198754; color: #fff; padding: 12px 20px; border: none; border-radius: 4px;
    cursor: pointer; font-size: 16px; width: 100%; transition: background-color 0.3s ease; margin-top: 10px;
}
.calcufacil-sales_tax_calculator button:hover { background-color: #146c43; }
/* Results */
.calcufacil-sales_tax_calculator .results { background: #d1e7dd; padding: 25px; border-radius: 8px; border: 1px solid #badbcc; }
.calcufacil-sales_tax_calculator .results-header { text-align: center; margin-bottom: 20px; }
.calcufacil-sales_tax_calculator .results-header h2 { font-size: 20px; color: #0f5132; margin: 0; }
.calcufacil-sales_tax_calculator .results-breakdown { display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px; }
.calcufacil-sales_tax_calculator .breakdown-item {
    display: flex; justify-content: space-between; align-items: center; padding: 10px 15px;
    background: #fff; border-radius: 4px; font-size: 14px; color: #333;
    border-left: 3px solid #198754; /* Green */
}
.calcufacil-sales_tax_calculator .breakdown-item span:last-child { font-weight: bold; color: #0f5132; text-align: right; font-size: 1.2em; }
.calcufacil-sales_tax_calculator .breakdown-item.main-result { background-color: #c1e1c5; padding: 15px; font-weight: bold; border-left-color: #146c43; }
.calcufacil-sales_tax_calculator .breakdown-item.main-result span:first-child { color: #333; font-size: 16px; }
.calcufacil-sales_tax_calculator .breakdown-item.main-result span:last-child { font-size: 1.8em; color: #0a3622; }

.calcufacil-sales_tax_calculator .note { font-size: 12px; color: #555; text-align: center; margin-top: 15px; font-style: italic; line-height: 1.4; }
.calcufacil-sales_tax_calculator .errors { color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb; padding: 10px 15px; border-radius: 4px; margin-top: 15px; }
.calcufacil-sales_tax_calculator .errors ul { list-style: none; padding: 0; margin: 0; }
.calcufacil-sales_tax_calculator .errors li { margin-bottom: 5px; }
.calcufacil-sales_tax_calculator .errors li:last-child { margin-bottom: 0; }