/* Wind Chill Calculator Styles - Adapted from AdSense */
.calcufacil-wind_chill_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-wind_chill_calculator h3 {
    width: 100%;
    text-align: center;
    color: #4682B4; /* SteelBlue for weather theme */
    margin-bottom: 20px;
    font-size: 24px;
}

.calcufacil-wind_chill_calculator .calcufacil-left,
.calcufacil-wind_chill_calculator .calcufacil-right {
    flex: 1;
    min-width: 300px;
}

/* Form Styling */
.calcufacil-wind_chill_calculator .calculator-form h2 {
    font-size: 20px;
    color: #4682B4;
    margin-bottom: 15px;
}

.calcufacil-wind_chill_calculator .input-group {
    margin-bottom: 15px;
}

.calcufacil-wind_chill_calculator label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    font-size: 14px;
}

.calcufacil-wind_chill_calculator input[type="number"],
.calcufacil-wind_chill_calculator select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    background: #f9f9f9;
}
/* Specific styling for select dropdowns */
.calcufacil-wind_chill_calculator select {
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none;
    -moz-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%23007CB2%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 10px top 50%;
    background-size: 10px auto;
    padding-right: 30px; /* Make space for arrow */
}

.calcufacil-wind_chill_calculator button {
    background-color: #5bc0de; /* Info Blue */
    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-wind_chill_calculator button:hover {
    background-color: #31b0d5;
}

/* Results Styling */
.calcufacil-wind_chill_calculator .results {
    background: #f0f8ff; /* AliceBlue */
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #d6eaff;
}

.calcufacil-wind_chill_calculator .results-header {
    text-align: center;
    margin-bottom: 20px;
}
.calcufacil-wind_chill_calculator .results-header h2 {
     font-size: 20px;
     color: #31708f; /* Darker info blue */
     margin: 0;
}

.calcufacil-wind_chill_calculator .results-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px; /* Reduced margin */
}

.calcufacil-wind_chill_calculator .breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #fff;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    border-left: 3px solid #5bc0de; /* Info Blue */
}

.calcufacil-wind_chill_calculator .breakdown-item span:last-child {
    font-weight: bold;
    color: #31708f; /* Darker info blue */
    text-align: right;
}

.calcufacil-wind_chill_calculator .breakdown-item.main-result span:last-child {
    font-size: 1.4em;
    color: #0b405c; /* Even Darker Blue */
}
.calcufacil-wind_chill_calculator .breakdown-item.main-result {
    background-color: #e3f2fd; /* Lightest Blue */
    padding: 15px;
    font-weight: bold;
}


.calcufacil-wind_chill_calculator .note {
    font-size: 12px;
    color: #555;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    line-height: 1.4;
}
.calcufacil-wind_chill_calculator .note.message {
    font-weight: bold;
    font-style: normal;
    color: #31708f;
    margin-bottom: 10px;
}


.calcufacil-wind_chill_calculator .errors {
    color: #a94442; /* Standard red */
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    padding: 10px 15px;
    border-radius: 4px;
    margin-top: 15px;
     margin-bottom: 15px; /* Add space below errors too */
}

.calcufacil-wind_chill_calculator .errors ul { list-style: none; padding: 0; margin: 0; }
.calcufacil-wind_chill_calculator .errors li { margin-bottom: 5px; }
.calcufacil-wind_chill_calculator .errors li:last-child { margin-bottom: 0; }