/* Kitchen Remodel Cost Estimator Styles */
.calcufacil-kitchen_remodel_cost_estimator.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-kitchen_remodel_cost_estimator .calcufacil-left,
.calcufacil-kitchen_remodel_cost_estimator .calcufacil-right {
    flex: 1; min-width: 300px;
}
.calcufacil-kitchen_remodel_cost_estimator .calculator-form h2 { font-size: 20px; color: #198754; margin-bottom: 15px; }
.calcufacil-kitchen_remodel_cost_estimator .input-group { margin-bottom: 20px; }
.calcufacil-kitchen_remodel_cost_estimator label { display: block; font-weight: bold; color: #333; margin-bottom: 10px; font-size: 14px; }
.calcufacil-kitchen_remodel_cost_estimator select {
    width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px;
    box-sizing: border-box; font-size: 16px; background: #f9f9f9;
}
.calcufacil-kitchen_remodel_cost_estimator .checkbox-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.calcufacil-kitchen_remodel_cost_estimator .checkbox-label {
    background: #f8f9fa; border: 1px solid #dee2e6; padding: 10px; border-radius: 4px;
    display: flex; align-items: center; font-weight: normal; cursor: pointer;
}
.calcufacil-kitchen_remodel_cost_estimator .checkbox-label input { margin-right: 10px; }
.calcufacil-kitchen_remodel_cost_estimator 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-kitchen_remodel_cost_estimator button:hover { background-color: #146c43; }
.calcufacil-kitchen_remodel_cost_estimator .disclaimer { font-size: 11px; color: #666; margin-top: 15px; text-align: center; }
.calcufacil-kitchen_remodel_cost_estimator .results { background: #d1e7dd; padding: 25px; border-radius: 8px; border: 1px solid #badbcc; }
.calcufacil-kitchen_remodel_cost_estimator .results-header { text-align: center; margin-bottom: 20px; }
.calcufacil-kitchen_remodel_cost_estimator .results-header h2 { font-size: 20px; color: #0f5132; margin: 0; }
.calcufacil-kitchen_remodel_cost_estimator .results-breakdown { display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px; }
.calcufacil-kitchen_remodel_cost_estimator .breakdown-item {
    padding: 10px 15px; background: #fff; border-radius: 4px; font-size: 14px; color: #333;
    display: flex; justify-content: space-between; align-items: center;
}
.calcufacil-kitchen_remodel_cost_estimator .breakdown-item span:last-child { font-weight: bold; color: #0f5132; }
.calcufacil-kitchen_remodel_cost_estimator .breakdown-item.main-result { background-color: #c1e1c5; padding: 15px; font-weight: bold; }
.calcufacil-kitchen_remodel_cost_estimator .breakdown-item.main-result span:first-child { font-size: 16px; }
.calcufacil-kitchen_remodel_cost_estimator .breakdown-item.main-result span:last-child { font-size: 1.8em; color: #0a3622; }
.calcufacil-kitchen_remodel_cost_estimator .no-items { text-align: center; color: #555; }
@media (max-width: 600px) {
    .calcufacil-kitchen_remodel_cost_estimator .checkbox-grid { grid-template-columns: 1fr; }
}