/* Oven Temp Converter Styles - Adapted */
.calcufacil-oven_temp_converter.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-oven_temp_converter h3 {
    width: 100%;
    text-align: center;
    color: #e74c3c; /* Alizarin Crimson - Heat/Oven */
    margin-bottom: 20px;
    font-size: 24px;
}

.calcufacil-oven_temp_converter .calcufacil-left,
.calcufacil-oven_temp_converter .calcufacil-right {
    flex: 1;
    min-width: 300px;
}

/* Form Styling */
.calcufacil-oven_temp_converter .calculator-form h2 {
    font-size: 20px;
    color: #c0392b; /* Pomegranate */
    margin-bottom: 15px;
}

.calcufacil-oven_temp_converter .input-group {
    margin-bottom: 20px;
}

.calcufacil-oven_temp_converter label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    font-size: 14px;
}

.calcufacil-oven_temp_converter input[type="number"],
.calcufacil-oven_temp_converter input[type="text"], /* For Gas Mark */
.calcufacil-oven_temp_converter select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    background: #f9f9f9;
}
/* Select dropdown styling */
.calcufacil-oven_temp_converter select {
    appearance: none; -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%23c0392b%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;
}

.calcufacil-oven_temp_converter button {
    background-color: #e74c3c; /* Alizarin Crimson */
    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-oven_temp_converter button:hover {
    background-color: #c0392b; /* Pomegranate */
}

/* Results Styling */
.calcufacil-oven_temp_converter .results {
    background: #fdedec; /* Lightest Red */
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #f5c6cb; /* Light Red border */
}

.calcufacil-oven_temp_converter .results-header {
    text-align: center;
    margin-bottom: 20px;
}
.calcufacil-oven_temp_converter .results-header h2 {
     font-size: 20px;
     color: #a51d2a; /* Dark Red */
     margin: 0;
}

.calcufacil-oven_temp_converter .results-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px; /* More space between temps */
    margin-bottom: 15px;
}

.calcufacil-oven_temp_converter .breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline; /* Align text baseline */
    padding: 12px 15px;
    background: #fff;
    border-radius: 4px;
    font-size: 16px; /* Larger temp font */
    color: #333;
    border-left: 4px solid #e74c3c; /* Alizarin Crimson */
}

.calcufacil-oven_temp_converter .breakdown-item span:first-child {
    font-weight: bold;
    color: #555;
    margin-right: 10px;
}

.calcufacil-oven_temp_converter .breakdown-item span:last-child {
    font-weight: bold;
    color: #c0392b; /* Pomegranate */
    text-align: right;
    font-size: 1.4em; /* Emphasize result */
}
/* Specific styles if needed */
.calcufacil-oven_temp_converter .breakdown-item.temp-c span:last-child { color: #2980b9; } /* Blue for Celsius */
.calcufacil-oven_temp_converter .breakdown-item.temp-f span:last-child { color: #e74c3c; } /* Red for Fahrenheit */
.calcufacil-oven_temp_converter .breakdown-item.temp-gas span:last-child { color: #f39c12; } /* Orange for Gas */


.calcufacil-oven_temp_converter .note {
    font-size: 12px;
    color: #555;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    line-height: 1.4;
}

.calcufacil-oven_temp_converter .errors {
    color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb;
    padding: 10px 15px; border-radius: 4px; margin-top: 15px;
}
.calcufacil-oven_temp_calculator .errors ul { list-style: none; padding: 0; margin: 0; }
.calcufacil-oven_temp_converter .errors li { margin-bottom: 5px; }
.calcufacil-oven_temp_converter .errors li:last-child { margin-bottom: 0; }