/* Currency Converter Styles - Adapted (Single Column) */
.calcufacil-currency_converter.calcufacil-container {
    max-width: 800px; /* Medium width */
    margin: 20px auto; background: #fff; padding: 20px; border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); font-family: Arial, sans-serif;
    /* No flex needed, single column */
}
.calcufacil-currency_converter .calcufacil-left,
.calcufacil-currency_converter .calcufacil-right { display: none; }

/* Disclaimer */
.calcufacil-currency_converter > .disclaimer {
    margin-bottom: 25px; padding: 15px 20px; border-radius: 5px; border: 1px solid transparent;
}
.calcufacil-currency_converter > .disclaimer.info {
    color: #0c5460; background-color: #d1ecf1; border-color: #bee5eb; /* Bootstrap Info */
}
.calcufacil-currency_converter > .disclaimer h4 { margin-top: 0; margin-bottom: 10px; color: #0d6efd; font-size: 18px; }
.calcufacil-currency_converter > .disclaimer h4 i { margin-right: 8px; }
.calcufacil-currency_converter > .disclaimer p { margin: 0 0 10px 0; font-size: 13px; line-height: 1.5;}
.calcufacil-currency_converter > .disclaimer p:last-child { margin-bottom: 0; }
.calcufacil-currency_converter > .disclaimer strong { color: #0a58ca; }

.calcufacil-currency_converter h3 { display: none; } /* Hide plugin title */

/* Form Area */
.calcufacil-currency_converter .currency-form { margin-bottom: 25px; }
.calcufacil-currency_converter .conversion-row {
    display: flex;
    align-items: flex-end; /* Align bottoms of inputs/selects */
    gap: 15px;
    flex-wrap: wrap; /* Allow wrapping */
}
.calcufacil-currency_converter .input-group { margin-bottom: 0; flex: 1; /* Share space */ }
.calcufacil-currency_converter .input-group.amount-group { flex-basis: 150px; flex-grow: 1; }
.calcufacil-currency_converter .input-group.currency-group { flex-basis: 200px; flex-grow: 2; }
.calcufacil-currency_converter .input-group.button-group { flex-basis: 100px; flex-grow: 0; align-self: flex-end; }

.calcufacil-currency_converter .swap-icon {
    font-size: 20px; color: #6c757d; padding: 10px 0; align-self: flex-end; margin: 0 5px;
    cursor: pointer; /* Add pointer if JS swap is implemented */
}


.calcufacil-currency_converter label { display: block; font-weight: bold; color: #333; margin-bottom: 5px; font-size: 13px; }
.calcufacil-currency_converter input[type="number"],
.calcufacil-currency_converter select {
    width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px;
    box-sizing: border-box; font-size: 16px; background: #f9f9f9;
}
.calcufacil-currency_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%23007bff%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; font-size: 14px; /* Smaller font for currency names */
}

.calcufacil-currency_converter button {
    background-color: #0d6efd; /* Stronger Blue */ color: #fff; padding: 10px 20px; border: none;
    border-radius: 4px; cursor: pointer; font-size: 16px; width: 100%;
    transition: background-color 0.3s ease;
}
.calcufacil-currency_converter button:hover { background-color: #0b5ed7; }

/* Results Styling */
.calcufacil-currency_converter .results.currency-results {
    background: #e7f1ff; /* Lightest Blue */ padding: 25px; border-radius: 8px; border: 1px solid #cfe2ff;
    margin-top: 15px; text-align: center;
}
.calcufacil-currency_converter .results .initial-message { color: #555; font-style: italic; }

.calcufacil-currency_converter .conversion-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.2em;
    flex-wrap: wrap;
}
.calcufacil-currency_converter .original-amount,
.calcufacil-currency_converter .converted-amount {
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 4px;
}
.calcufacil-currency_converter .original-amount {
     background-color: #fff; color: #555;
}
.calcufacil-currency_converter .equals-sign {
    font-size: 1.5em; color: #6c757d;
}
.calcufacil-currency_converter .converted-amount {
    background-color: #0d6efd; /* Strong Blue */ color: #fff; font-size: 1.4em;
}

.calcufacil-currency_converter .exchange-rate-display {
    font-size: 13px; color: #4a5568; /* Gray */ margin-top: 10px;
}

.calcufacil-currency_converter .errors {
    color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb;
    padding: 10px 15px; border-radius: 4px; margin-top: 15px; display: inline-block; /* Center errors */
}
.calcufacil-currency_converter .errors ul { list-style: none; padding: 0; margin: 0; }
.calcufacil-currency_converter .errors li { margin-bottom: 5px; }
.calcufacil-currency_converter .errors li:last-child { margin-bottom: 0; }