.lc-container {
    font-family: inherit;
    background: #f9f9f9;
    padding: 24px;
    border-radius: 8px;
}
.lc-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.lc-inputs {
    flex: 1 1 300px;
}
.lc-chart-container {
    flex: 1 1 250px;
    min-height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lc-input-group {
    margin-bottom: 16px;
}
.lc-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.lc-input-wrapper {
    display: flex;
    align-items: center;
}
.lc-input-wrapper span {
    padding: 10px 14px;
    background: #e1e1e1;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
}
.lc-container input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.lc-input-wrapper input {
    border-radius: 0 4px 4px 0 !important;
}
.lc-result {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}
.lc-result p {
    margin: 4px 0;
    font-size: 1.05em;
}
.lc-result h3 {
    margin: 12px 0 0;
    font-size: 1.2em;
    font-weight: 700;
}