/* Heat Index Calculator Styles - Adapted */
.calcufacil-heat_index_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-heat_index_calculator h3 {
    width: 100%; text-align: center; color: #FF8C00; /* DarkOrange - Heat/Sun */
    margin-bottom: 20px; font-size: 24px;
}

.calcufacil-heat_index_calculator .calcufacil-left,
.calcufacil-heat_index_calculator .calcufacil-right { flex: 1; min-width: 300px; }

/* Form Styling */
.calcufacil-heat_index_calculator .calculator-form h2 { font-size: 20px; color: #FF8C00; margin-bottom: 15px; }
.calcufacil-heat_index_calculator .input-group { margin-bottom: 18px; }
.calcufacil-heat_index_calculator label { display: block; font-weight: bold; color: #333; margin-bottom: 5px; font-size: 14px; }
.calcufacil-heat_index_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-heat_index_calculator .radio-group { padding: 5px 0; }
.calcufacil-heat_index_calculator .radio-group > label:first-of-type { margin-bottom: 8px; }
.calcufacil-heat_index_calculator .radio-group.inline label { display: inline-block; margin-right: 20px; font-weight: normal; font-size: 14px; cursor: pointer; }
.calcufacil-heat_index_calculator .radio-group.inline input[type="radio"] { margin-right: 5px; vertical-align: middle; }

.calcufacil-heat_index_calculator button {
    background-color: #FFA500; /* 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; font-weight: bold;
}
.calcufacil-heat_index_calculator button:hover { background-color: #cc8400; /* Darker Orange */ }

/* Results Styling */
.calcufacil-heat_index_calculator .results {
    background: #fff8e1; /* Light Yellow/Orange */ padding: 25px; border-radius: 8px; border: 1px solid #ffecb3;
}
.calcufacil-heat_index_calculator .results-header { text-align: center; margin-bottom: 20px; }
.calcufacil-heat_index_calculator .results-header h2 { font-size: 20px; color: #d17900; /* Dark Orange */ margin: 0; }

.calcufacil-heat_index_calculator .results-breakdown { display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px; }
.calcufacil-heat_index_calculator .breakdown-item {
    display: flex; justify-content: space-between; align-items: center; padding: 10px 15px;
    background: #fff; border-radius: 4px; font-size: 14px; color: #333;
    border-left: 3px solid #FFA500; /* Orange */
}
.calcufacil-heat_index_calculator .breakdown-item span:last-child { font-weight: bold; color: #d17900; text-align: right; font-size: 1.1em; }

.calcufacil-heat_index_calculator .breakdown-item.main-result {
    background-color: #fff3cd; padding: 15px; font-weight: bold; border-left-color: #FF8C00; /* DarkOrange */
}
.calcufacil-heat_index_calculator .breakdown-item.main-result span:first-child { font-size: 15px; color: #333; }
.calcufacil-heat_index_calculator .breakdown-item.main-result span:last-child { font-size: 1.8em; color: #b36200; /* Darkest Orange */ }

.calcufacil-heat_index_calculator .breakdown-item.interpretation {
    background-color: #fff; border-left-width: 0; border-top: 1px dashed #ccc; margin-top: 5px; padding-top: 10px; font-style: normal;
}
.calcufacil-heat_index_calculator .breakdown-item.interpretation span:last-child { font-weight: bold; font-size: 1.1em; }
/* Danger Level Coloring */
.calcufacil-heat_index_calculator .interpretation.precaución span:last-child { color: #ffc107; } /* Yellow */
.calcufacil-heat_index_calculator .interpretation.precaución-extrema span:last-child { color: #fd7e14; } /* Orange */
.calcufacil-heat_index_calculator .interpretation.peligro span:last-child { color: #dc3545; } /* Red */
.calcufacil-heat_index_calculator .interpretation.peligro-extremo span:last-child { color: #a51d2a; font-weight: bolder; } /* Dark Red */


.calcufacil-heat_index_calculator .note { font-size: 12px; color: #555; text-align: center; margin-top: 15px; font-style: italic; line-height: 1.4; }
.calcufacil-heat_index_calculator .note.message { font-weight: bold; font-style: normal; color: #007bff; background-color: #e6f2ff; padding: 5px; border-radius: 3px; }

.calcufacil-heat_index_calculator .errors {
    color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb;
    padding: 10px 15px; border-radius: 4px; margin-top: 15px;
}
.calcufacil-heat_index_calculator .errors ul { list-style: none; padding: 0; margin: 0; }
.calcufacil-heat_index_calculator .errors li { margin-bottom: 5px; }
.calcufacil-heat_index_calculator .errors li:last-child { margin-bottom: 0; }