/* RAG Cost Estimator Styles - Tech/AI Theme */
.calcufacil-rag_cost_estimator_calculator.calcufacil-container.full-width-calc {
    max-width: 1000px; margin: 20px auto; background: #fff; padding: 25px;
    border-radius: 8px; box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif; display: block;
}
.calcufacil-rag_cost_estimator_calculator h3 { display: none; }

.calcufacil-rag_cost_estimator_calculator .calculator-form h2 {
    font-size: 22px; color: #6f42c1; /* Indigo */ margin-bottom: 10px; text-align: center;
}
.calcufacil-rag_cost_estimator_calculator .instructions {
    text-align: center; font-size: 14px; color: #555; margin-bottom: 25px;
}
/* Fieldsets */
.calcufacil-rag_cost_estimator_calculator fieldset {
    border: 1px solid #e0d7f0; padding: 15px 20px; border-radius: 6px; margin-bottom: 20px;
}
.calcufacil-rag_cost_estimator_calculator legend {
    font-weight: bold; color: #59359a; padding: 0 10px; font-size: 16px;
}
.calcufacil-rag_cost_estimator_calculator .inline-group {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; margin-bottom: 5px;
}
.calcufacil-rag_cost_estimator_calculator .input-group { margin-bottom: 5px; } /* Reduced margin */
.calcufacil-rag_cost_estimator_calculator label { display: block; font-weight: bold; color: #333; margin-bottom: 5px; font-size: 13px; }
.calcufacil-rag_cost_estimator_calculator input[type="number"] {
    width: 100%; padding: 9px; border: 1px solid #ccc; border-radius: 4px;
    box-sizing: border-box; font-size: 15px; background: #f9f9f9;
}
.calcufacil-rag_cost_estimator_calculator .input-group small { display: block; font-size: 10px; color: #777; margin-top: 3px; font-style: italic; }

.calcufacil-rag_cost_estimator_calculator button {
    background-color: #8a63d2; color: #fff; padding: 12px 25px; border: none; border-radius: 4px;
    cursor: pointer; font-size: 16px; display: block; margin: 20px auto 0 auto;
    transition: background-color 0.3s ease;
}
.calcufacil-rag_cost_estimator_calculator button:hover { background-color: #6f42c1; }
/* Results */
.calcufacil-rag_cost_estimator_calculator .results { background: #f3f0f9; padding: 25px; border-radius: 8px; border: 1px solid #dcd0e8; margin-top: 25px;}
.calcufacil-rag_cost_estimator_calculator .results-header { text-align: center; margin-bottom: 15px; }
.calcufacil-rag_cost_estimator_calculator .results-header h2 { font-size: 20px; color: #59359a; margin: 0; }
.calcufacil-rag_cost_estimator_calculator .comparison-summary { text-align: center; font-size: 14px; color: #555; margin-bottom: 20px; }
.calcufacil-rag_cost_estimator_calculator .results-breakdown { display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px; }
.calcufacil-rag_cost_estimator_calculator .breakdown-item {
    padding: 10px 15px; background: #fff; border-radius: 4px; font-size: 14px; color: #333;
    border-left: 3px solid #8a63d2; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; /* Allow wrap */
}
.calcufacil-rag_cost_estimator_calculator .breakdown-item span:first-child { font-weight: bold; margin-right: 10px; }
.calcufacil-rag_cost_estimator_calculator .breakdown-item span:last-child { font-weight: bold; color: #59359a; text-align: right; font-size: 1.1em; }
.calcufacil-rag_cost_estimator_calculator .breakdown-item small { font-size: 0.8em; color: #666; font-style: italic; width: 100%; text-align: right; margin-top: 2px; } /* Sub-notes */
.calcufacil-rag_cost_estimator_calculator .breakdown-item.main-result { background-color: #e8e1f2; padding: 15px; font-weight: bold; border-left-color: #6f42c1; }
.calcufacil-rag_cost_estimator_calculator .breakdown-item.main-result span:first-child { font-size: 16px; }
.calcufacil-rag_cost_estimator_calculator .breakdown-item.main-result span:last-child { font-size: 1.8em; color: #4d2d80; }

.calcufacil-rag_cost_estimator_calculator .note { font-size: 12px; color: #555; text-align: center; margin-top: 15px; font-style: italic; line-height: 1.4; }
.calcufacil-rag_cost_estimator_calculator .errors { color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb; padding: 10px 15px; border-radius: 4px; margin-top: 15px; margin-bottom: 15px; }
.calcufacil-rag_cost_estimator_calculator .errors ul { list-style: none; padding: 0; margin: 0; }
.calcufacil-rag_cost_estimator_calculator .errors li { margin-bottom: 5px; }
.calcufacil-rag_cost_estimator_calculator .errors li:last-child { margin-bottom: 0; }