/* Styles for Kilos to Libras Converter - Easy Code */
.calcufacil-kilos_to_libras_converter.calcufacil-container.simple-converter-box {
    max-width: 450px; /* Compact for a simple converter */
    margin: 25px auto;
    background: #f9f9f9;
    padding: 25px; /* More padding for a focused look */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center; /* Center content */
    font-family: 'Arial', sans-serif;
}

.calcufacil-kilos_to_libras_converter h3 {
    font-size: 20px;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.calcufacil-kilos_to_libras_converter .description {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.calcufacil-kilos_to_libras_converter .simple-converter-form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center form elements */
    gap: 15px; /* Space between elements */
    margin-bottom: 20px;
}

.calcufacil-kilos_to_libras_converter .input-group-simple {
    display: flex;
    flex-direction: column; /* Stack label and input */
    align-items: center; /* Center label and input */
    width: 100%;
    max-width: 250px; /* Control input width */
}

.calcufacil-kilos_to_libras_converter .input-group-simple label {
    font-weight: 500;
    color: #444;
    margin-bottom: 6px;
    font-size: 14px;
}

.calcufacil-kilos_to_libras_converter .input-group-simple input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    text-align: center;
}
.calcufacil-kilos_to_libras_converter .input-group-simple input[type="text"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}


.calcufacil-kilos_to_libras_converter button[type="submit"] {
    background: #007bff;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.2s ease;
    width: 100%;
    max-width: 250px; /* Match input width */
}

.calcufacil-kilos_to_libras_converter button[type="submit"]:hover {
    background: #0056b3;
}

.calcufacil-kilos_to_libras_converter .simple-converter-result {
    background-color: #e9f2f9;
    border: 1px solid #c8d7e6;
    border-radius: 6px;
    padding: 20px;
    margin-top: 20px;
}

.calcufacil-kilos_to_libras_converter .simple-converter-result p {
    font-size: 1.3em;
    color: #333;
    margin: 8px 0;
}

.calcufacil-kilos_to_libras_converter .simple-converter-result .equals-sign-simple {
    font-size: 1.8em;
    font-weight: bold;
    color: #007bff;
    margin: 10px 0;
}
.calcufacil-kilos_to_libras_converter .simple-converter-result .converted-value-simple {
    font-size: 2.2em;
    font-weight: bold;
    color: #0056b3; /* Darker blue for result */
}

.calcufacil-kilos_to_libras_converter .errors.main-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    text-align: left;
}
.calcufacil-kilos_to_libras_converter .initial-message-simple {
    font-size: 0.95em;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}