/* Refrigerator Cost Calculator Styles */
.calcufacil-refrigerator_cost_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-refrigerator_cost_calculator .calcufacil-left, .calcufacil-refrigerator_cost_calculator .calcufacil-right { flex: 1; min-width: 300px; }
.calcufacil-refrigerator_cost_calculator h2 { font-size: 20px; color: #198754; margin-bottom: 15px; }
.calcufacil-refrigerator_cost_calculator .input-group { margin-bottom: 18px; }
.calcufacil-refrigerator_cost_calculator label { display: block; font-weight: bold; margin-bottom: 5px; }
.calcufacil-refrigerator_cost_calculator small { color: #666; font-size: 12px; }
.calcufacil-refrigerator_cost_calculator input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; background: #f9f9f9; }
.calcufacil-refrigerator_cost_calculator button { background-color: #198754; color: #fff; padding: 12px; border: none; border-radius: 4px; cursor: pointer; font-size: 16px; width: 100%; margin-top: 10px; }
.calcufacil-refrigerator_cost_calculator .results { background: #d1e7dd; padding: 25px; border-radius: 8px; }
.calcufacil-refrigerator_cost_calculator .results-header h2 { font-size: 20px; color: #0f5132; text-align: center; margin: 0 0 20px 0; }
.calcufacil-refrigerator_cost_calculator .results-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.calcufacil-refrigerator_cost_calculator .result-box { background: #fff; border-radius: 5px; padding: 15px; text-align: center; }
.calcufacil-refrigerator_cost_calculator .result-box h4 { margin: 0 0 5px 0; color: #495057; }
.calcufacil-refrigerator_cost_calculator .result-box span { font-size: 1.8em; font-weight: bold; color: #0a3622; }
@media (min-width: 768px) { .calcufacil-refrigerator_cost_calculator .results-grid { grid-template-columns: repeat(3, 1fr); }}