.ls-calc-container {
    max-width: 600px;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 25px;
    font-family: sans-serif;
    color: #333;
    border-radius: 4px;
}

.ls-calc-header h2 {
    margin: 0 0 5px 0;
    color: #b08d57;
}

.ls-calc-date {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.ls-calc-descr {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.ls-calc-table {
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.ls-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
}

.ls-row.ls-head {
    background: #f9f9f9;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
}

.ls-row.light {
    background: #fafafa;
}

.ls-row:last-child {
    border-bottom: none;
}

.ls-label {
    font-size: 14px;
    font-weight: 600;
}

.ls-price {
    color: #d4af37;
    font-weight: bold;
}

.ls-input {
    width: 80px;
    padding: 5px;
    border: 1px solid #ccc;
    text-align: right;
}

.ls-total-box {
    background: #333;
    color: #fff;
    padding: 15px;
    text-align: right;
    border-radius: 2px;
}

.ls-total-label {
    font-size: 18px;
    margin-right: 10px;
}

#ls-total-value {
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
}

.ls-note {
    font-size: 11px;
    color: #999;
    margin-top: 10px;
}