/* Cooking Substitution Styles - Lifestyle/Food Theme */
.calcufacil-cooking_substitution_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-cooking_substitution_calculator h3 {
    width: 100%; text-align: center; color: #e85d04; /* Bright Orange */
    margin-bottom: 20px; font-size: 24px;
}
.calcufacil-cooking_substitution_calculator .calcufacil-left,
.calcufacil-cooking_substitution_calculator .calcufacil-right {
    flex: 1; min-width: 300px;
}
/* Form */
.calcufacil-cooking_substitution_calculator .calculator-form h2 { font-size: 20px; color: #e85d04; margin-bottom: 15px; }
.calcufacil-cooking_substitution_calculator .input-group { margin-bottom: 18px; }
.calcufacil-cooking_substitution_calculator label { display: block; font-weight: bold; color: #333; margin-bottom: 5px; font-size: 14px; }
.calcufacil-cooking_substitution_calculator input[type="number"],
.calcufacil-cooking_substitution_calculator input[type="text"],
.calcufacil-cooking_substitution_calculator select {
    padding: 10px; border: 1px solid #ccc; border-radius: 4px;
    box-sizing: border-box; font-size: 16px; background: #f9f9f9;
}
.calcufacil-cooking_substitution_calculator .inline-inputs.compact { display: flex; gap: 8px; align-items: center; }
.calcufacil-cooking_substitution_calculator .inline-inputs.compact input:first-child { flex-grow: 1; width: auto; }
.calcufacil-cooking_substitution_calculator .inline-inputs.compact input:last-child { flex-shrink: 0; width: 35%; }

.calcufacil-cooking_substitution_calculator select {
    width: 100%; appearance: none; -webkit-appearance: none; -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23d05000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat; background-position: right 10px top 50%; background-size: 10px auto;
    padding-right: 30px;
}

.calcufacil-cooking_substitution_calculator button {
    background-color: #f48c06; /* Darker Orange */ 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-cooking_substitution_calculator button:hover { background-color: #d05000; }
/* Results */
.calcufacil-cooking_substitution_calculator .results { background: #fff9f2; padding: 25px; border-radius: 8px; border: 1px solid #ffedd5; }
.calcufacil-cooking_substitution_calculator .results-header { text-align: center; margin-bottom: 20px; }
.calcufacil-cooking_substitution_calculator .results-header h2 { font-size: 20px; color: #d05000; margin: 0; }
.calcufacil-cooking_substitution_calculator .input-summary { text-align: center; font-size: 14px; color: #555; margin-bottom: 20px; background-color: #fff; padding: 10px; border-radius: 4px; border: 1px solid #eee;}
.calcufacil-cooking_substitution_calculator .substitution-list { list-style: none; padding: 0; margin: 0; }
.calcufacil-cooking_substitution_calculator .substitution-list li {
    background: #fff; padding: 12px 15px; border-radius: 4px; margin-bottom: 8px;
    border-left: 3px solid #f48c06; font-size: 14px;
}
.calcufacil-cooking_substitution_calculator .substitution-list li strong { color: #333; }
.calcufacil-cooking_substitution_calculator .substitution-list li small.sub-note { display: block; font-size: 11px; color: #666; margin-top: 4px; font-style: italic; }

.calcufacil-cooking_substitution_calculator .note { font-size: 12px; color: #555; text-align: center; margin-top: 15px; font-style: italic; line-height: 1.4; }
.calcufacil-cooking_substitution_calculator .errors { color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb; padding: 10px 15px; border-radius: 4px; margin-top: 15px; }
.calcufacil-cooking_substitution_calculator .errors ul { list-style: none; padding: 0; margin: 0; }
.calcufacil-cooking_substitution_calculator .errors li { margin-bottom: 5px; }
.calcufacil-cooking_substitution_calculator .errors li:last-child { margin-bottom: 0; }