/* Basic styling for the currency converter widget. */
.currency-converter-lite {
    font-family: Arial, sans-serif;
    padding: 20px;
    border-style: solid;
    border-width: 2px;
    max-width: 400px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.currency-converter-lite h2 {
    margin-top: 0;
    text-align: center;
}

.converter-row {
    margin-bottom: 15px;
}

.converter-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.converter-row select,
.converter-row input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.converter-result {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
}

.exchange-rate-disclaimer {
    text-align: center;
    margin-top: 10px;
    font-size: 0.8em;
    color: #888;
}

.convert-button {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    margin-top: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}