.cila-calculator {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    max-width: 600px;
    font-family: sans-serif;
}

.cila-form-group {
    margin-bottom: 15px;
}

.cila-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.cila-form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.cila-results {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cila-results h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.cila-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #fff;
    border: 1px solid #eee;
}

.cila-table th, .cila-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.cila-table th {
    background-color: #f0f0f0;
    font-weight: bold;
}
