/* Coffee Factor Calculator Styles - Finance/Motivational Theme */
.calcufacil-coffee_factor_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-coffee_factor_calculator h3 {
    width: 100%; text-align: center; color: #ff9800; /* Orange - Awakening/Awareness */
    margin-bottom: 20px; font-size: 24px;
}
.calcufacil-coffee_factor_calculator .calcufacil-left,
.calcufacil-coffee_factor_calculator .calcufacil-right {
    flex: 1; min-width: 300px;
}
/* Form */
.calcufacil-coffee_factor_calculator .calculator-form h2 { font-size: 20px; color: #ff9800; margin-bottom: 15px; }
.calcufacil-coffee_factor_calculator .input-group { margin-bottom: 18px; }
.calcufacil-coffee_factor_calculator label { display: block; font-weight: bold; color: #333; margin-bottom: 5px; font-size: 14px; }
.calcufacil-coffee_factor_calculator .input-group small { display: block; font-size: 11px; color: #666; margin-top: 4px; }
.calcufacil-coffee_factor_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-coffee_factor_calculator button {
    background-color: #ffa726; /* Lighter 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-coffee_factor_calculator button:hover { background-color: #fb8c00; /* Darker Orange */ }
/* Results */
.calcufacil-coffee_factor_calculator .results { background: #fff3e0; padding: 25px; border-radius: 8px; border: 1px solid #ffe0b2; }
.calcufacil-coffee_factor_calculator .results-header { text-align: center; margin-bottom: 15px; }
.calcufacil-coffee_factor_calculator .results-header h2 { font-size: 20px; color: #e65100; /* Deep Orange */ margin: 0; }
.calcufacil-coffee_factor_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 #ffe0b2;}
.calcufacil-coffee_factor_calculator .results-breakdown { display: flex; flex-direction: column; gap: 8px; margin-bottom: 15px; }
.calcufacil-coffee_factor_calculator .results-breakdown hr { border: 0; border-top: 1px dashed #ffe0b2; margin: 10px 0; }
.calcufacil-coffee_factor_calculator .breakdown-item {
    padding: 8px 15px; background: #fff; border-radius: 4px; font-size: 14px; color: #333;
    border-left: 3px solid #ffb74d; /* Light Orange */ display: flex; justify-content: space-between; align-items: center;
}
.calcufacil-coffee_factor_calculator .breakdown-item span:last-child { font-weight: bold; color: #e65100; text-align: right; font-size: 1.1em; }
.calcufacil-coffee_factor_calculator .breakdown-item.total span:last-child { color: #bf360c; /* Deep Orange Darken-4 */ }
.calcufacil-coffee_factor_calculator .breakdown-item.emphasis { background-color: transparent; border-left: none; padding-left: 0; margin-top: 10px; font-weight: bold; color: #e65100; }
.calcufacil-coffee_factor_calculator .breakdown-item.main-result { background-color: #ffe0b2; padding: 15px; font-weight: bold; border-left-color: #ff9800; }
.calcufacil-coffee_factor_calculator .breakdown-item.main-result span:first-child { font-size: 16px; }
.calcufacil-coffee_factor_calculator .breakdown-item.main-result span:last-child { font-size: 1.8em; color: #bf360c; }
.calcufacil-coffee_factor_calculator .breakdown-item.gain span:last-child { color: #198754; /* Green for gain */ font-size: 1.4em; }


.calcufacil-coffee_factor_calculator .note { font-size: 12px; color: #555; text-align: center; margin-top: 15px; font-style: italic; line-height: 1.4; }
.calcufacil-coffee_factor_calculator .errors { color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb; padding: 10px 15px; border-radius: 4px; margin-top: 15px; }
.calcufacil-coffee_factor_calculator .errors ul { list-style: none; padding: 0; margin: 0; }
.calcufacil-coffee_factor_calculator .errors li { margin-bottom: 5px; }
.calcufacil-coffee_factor_calculator .errors li:last-child { margin-bottom: 0; }