/* Etsy Profit Calc Styles - Commerce/Craft Theme */
.calcufacil-etsy_profit_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-etsy_profit_calculator h3 {
    width: 100%; text-align: center; color: #f56400; /* Etsy Orange */
    margin-bottom: 20px; font-size: 24px;
}
.calcufacil-etsy_profit_calculator .calcufacil-left,
.calcufacil-etsy_profit_calculator .calcufacil-right {
    flex: 1; min-width: 300px;
}
/* Form */
.calcufacil-etsy_profit_calculator .calculator-form h2 { font-size: 20px; color: #f56400; margin-bottom: 15px; }
.calcufacil-etsy_profit_calculator fieldset { border: 1px solid #ffe8d6; padding: 15px 20px; border-radius: 6px; margin-bottom: 20px; }
.calcufacil-etsy_profit_calculator legend { font-weight: bold; color: #c75000; padding: 0 10px; font-size: 16px; }
.calcufacil-etsy_profit_calculator .verify-prices { color: #dc3545; font-weight: normal; font-size: 0.9em; }
.calcufacil-etsy_profit_calculator .input-group { margin-bottom: 12px; }
.calcufacil-etsy_profit_calculator label { display: block; font-weight: bold; color: #333; margin-bottom: 4px; font-size: 13px; }
.calcufacil-etsy_profit_calculator .inline-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px 15px; }
.calcufacil-etsy_profit_calculator .fees-group { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); } /* Smaller columns for fees */
.calcufacil-etsy_profit_calculator input[type="number"] {
    width: 100%; padding: 9px; border: 1px solid #ccc; border-radius: 4px;
    box-sizing: border-box; font-size: 14px; background: #f9f9f9;
}
.calcufacil-etsy_profit_calculator input::placeholder { font-size: 12px; color: #888; font-style: italic; }

.calcufacil-etsy_profit_calculator button {
    background-color: #f56400; 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-etsy_profit_calculator button:hover { background-color: #c75000; }
/* Results */
.calcufacil-etsy_profit_calculator .results { background: #fff4e6; padding: 25px; border-radius: 8px; border: 1px solid #ffe8d6; }
.calcufacil-etsy_profit_calculator .results-header { text-align: center; margin-bottom: 20px; }
.calcufacil-etsy_profit_calculator .results-header h2 { font-size: 20px; color: #c75000; margin: 0; }
.calcufacil-etsy_profit_calculator .results-breakdown { display: flex; flex-direction: column; gap: 5px; margin-bottom: 15px; background: #fff; padding: 15px; border-radius: 4px; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.calcufacil-etsy_profit_calculator .results-breakdown hr { border: 0; border-top: 1px dashed #eee; margin: 8px 0; }
.calcufacil-etsy_profit_calculator .breakdown-item {
    display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 13px; color: #444;
}
.calcufacil-etsy_profit_calculator .breakdown-item span:last-child { font-weight: 500; color: #555; text-align: right; }
.calcufacil-etsy_profit_calculator .breakdown-item.sub-item span:first-child { padding-left: 15px; font-style: italic; } /* Indent cost items */
.calcufacil-etsy_profit_calculator .breakdown-item.fee span:first-child { color: #a0522d; } /* Brownish for fees */
.calcufacil-etsy_profit_calculator .breakdown-item.total-costs { font-weight: bold; border-top: 1px solid #eee; padding-top: 8px; margin-top: 5px; }
.calcufacil-etsy_profit_calculator .breakdown-item.total-costs span:last-child { color: #c75000; }
.calcufacil-etsy_profit_calculator .breakdown-item.main-result { background-color: #ffe8d6; margin: 10px -15px 0 -15px; padding: 12px 15px; font-weight: bold; border-radius: 0 0 4px 4px;}
.calcufacil-etsy_profit_calculator .breakdown-item.main-result span:first-child { font-size: 15px; color: #333; }
.calcufacil-etsy_profit_calculator .breakdown-item.main-result span:last-child { font-size: 1.6em; }
.calcufacil-etsy_profit_calculator .breakdown-item.main-result.alt { background-color: transparent; margin: 0; padding: 6px 0; border-top: 1px dotted #ccc; }
.calcufacil-etsy_profit_calculator .breakdown-item.main-result.alt span:last-child { font-size: 1.2em; }
/* Profit/Loss Coloring */
.calcufacil-etsy_profit_calculator .breakdown-item.main-result.positive-profit span:last-child { color: #198754; }
.calcufacil-etsy_profit_calculator .breakdown-item.main-result.negative-profit span:last-child { color: #dc3545; }
.calcufacil-etsy_profit_calculator .breakdown-item.main-result.zero-profit span:last-child { color: #6c757d; }


.calcufacil-etsy_profit_calculator .note { font-size: 12px; color: #555; text-align: center; margin-top: 15px; font-style: italic; line-height: 1.4; }
.calcufacil-etsy_profit_calculator .errors { color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb; padding: 10px 15px; border-radius: 4px; margin-top: 15px; }
.calcufacil-etsy_profit_calculator .errors ul { list-style: none; padding: 0; margin: 0; }
.calcufacil-etsy_profit_calculator .errors li { margin-bottom: 5px; }
.calcufacil-etsy_profit_calculator .errors li:last-child { margin-bottom: 0; }