/* Styles for Ingredient Specific Kitchen Converter */
.calcufacil-ingredient_kitchen_converter.calcufacil-container {
    max-width: 800px; margin: 25px auto; background: #fdfdfd; padding: 25px;
    border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex; flex-direction: row; flex-wrap: wrap; gap: 30px;
    font-family: 'Arial', sans-serif; border: 1px solid #FF8A65; /* Light Coral for kitchen/food */
    box-sizing: border-box;
}
.calcufacil-ingredient_kitchen_converter.calcufacil-container *,
.calcufacil-ingredient_kitchen_converter.calcufacil-container *::before,
.calcufacil-ingredient_kitchen_converter.calcufacil-container *::after { box-sizing: border-box; }

.calcufacil-ingredient_kitchen_converter h2 {
    width: 100%; text-align: center; color: #D84315; /* Deep Orange */
    margin-top:0; margin-bottom: 15px; font-size: 1.6em;
}
.calcufacil-ingredient_kitchen_converter .calcufacil-left.calculator-form {
    flex: 1.3; min-width: 350px; padding: 20px; background-color: #fff;
    border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border: 1px solid #FFE0B2; /* Light orange */
}
.calcufacil-ingredient_kitchen_converter .calcufacil-right.results {
    flex: 1; min-width: 300px; background: #FFF3E0; /* Very Light Orange */
    padding: 25px; border-radius: 8px; border: 1px solid #FFE0B2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); display: flex; flex-direction: column;
    justify-content: flex-start; align-items: center;
}

.calcufacil-ingredient_kitchen_converter .input-group { margin-bottom: 15px; }
.calcufacil-ingredient_kitchen_converter label {
    display: block; font-weight: 600; color: #BF360C; /* Brownish Orange */
    margin-bottom: 6px; font-size: 0.95em;
}
.calcufacil-ingredient_kitchen_converter input[type="text"],
.calcufacil-ingredient_kitchen_converter select {
    width: 100%; padding: 10px 12px; border: 1px solid #FFCC80; /* Light Orange border */
    border-radius: 5px; font-size: 1em; background: #FFFFF0; /* Ivory */ font-family: sans-serif;
}
.calcufacil-ingredient_kitchen_converter select {
    -webkit-appearance: none; -moz-appearance: none; 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%23BF360C%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 15px center; background-size: 10px 10px; padding-right: 40px;
}
.calcufacil-ingredient_kitchen_converter input[type="text"]:focus,
.calcufacil-ingredient_kitchen_converter select:focus {
    border-color: #FFA726; box-shadow: 0 0 0 2px rgba(255, 167, 38, 0.2); outline: none;
}
.calcufacil-ingredient_kitchen_converter .conditional-input {
    margin-top:10px; padding:10px; border:1px dashed #FFCC80; border-radius: 5px; background: #FFF9E6;
}

.calcufacil-ingredient_kitchen_converter button[type="submit"] {
    background-color: #FF8A65; /* Light Coral */ color: #fff; padding: 12px 25px;
    border: none; border-radius: 5px; cursor: pointer; font-size: 1.05em;
    width: 100%; transition: background-color 0.3s ease; font-weight: 600; margin-top:15px;
}
.calcufacil-ingredient_kitchen_converter button[type="submit"]:hover { background-color: #FF7043; /* Coral */ }

/* Results Styling */
.calcufacil-ingredient_kitchen_converter .results-header h2 { color: #D84315; margin-bottom: 20px; font-size: 1.4em; }
.calcufacil-ingredient_kitchen_converter .initial-message {
    text-align: center; color: #D84315; font-style: italic; padding: 20px;
    background-color: #FFF3E0; border: 1px dashed #FFCC80; border-radius: 5px; width:100%;
}
.calcufacil-ingredient_kitchen_converter .calculation-summary { width: 100%; text-align: center; margin-bottom: 20px; }
.calcufacil-ingredient_kitchen_converter .calculation-desc { font-size: 1.05em; color: #BF360C; margin-bottom: 15px; line-height: 1.4;}
.calcufacil-ingredient_kitchen_converter .calculation-desc strong { font-weight: bold; }

.calcufacil-ingredient_kitchen_converter .main-result {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background-color: #FFE0B2; /* Light Orange */ padding: 15px; border-radius: 8px;
    border: 1px solid #FFCC80; font-size: 1.1em; color: #BF360C;
    margin-bottom: 10px; width: 100%;
}
.calcufacil-ingredient_kitchen_converter .main-result.final-result {
    background-color: #FF8A65; /* Light Coral */ color: #4E342E; /* Brown text */ font-size: 1.5em;
    padding: 20px; border-color: #FF7043; margin-top:10px; font-weight: bold;
}
.calcufacil-ingredient_kitchen_converter .main-result span:first-child { font-size: 0.8em; opacity:0.9; }
.calcufacil-ingredient_kitchen_converter .main-result span:last-child { font-size: 1.8em; font-weight: bold; margin-top: 5px; }

.calcufacil-ingredient_kitchen_converter .errors {
    color: #D32F2F; background-color: #FFCDD2; border: 1px solid #EF9A9A;
    padding: 10px 15px; border-radius: 4px; margin: 15px 0; text-align: center; width:100%;
}
.calcufacil-ingredient_kitchen_converter .errors ul { list-style: none; padding: 0; margin: 0; }

.calcufacil-ingredient_kitchen_converter .disclaimer-box.info {
    padding: 15px; background-color: #FFF9C4; /* Light Yellow for info */
    border: 1px solid #FFF59D; border-left: 5px solid #FBC02D; /* Amber accent */
    border-radius: 8px; font-size: 0.85em; color: #424242; width:100%;
}
.calcufacil-ingredient_kitchen_converter .disclaimer-box.info h4 {
    color: #E65100; font-size: 1.1em; margin-top: 0; margin-bottom: 10px;
}
.calcufacil-ingredient_kitchen_converter .disclaimer-box.info ul { list-style: disc; margin-left: 20px; padding-left: 0; line-height: 1.6; }

/* Responsive */
@media (max-width: 768px) {
    .calcufacil-ingredient_kitchen_converter.calcufacil-container { flex-direction: column; gap: 20px; padding: 15px; }
}