/* Discount Calculator CSS Styles */
.discount-options-panel {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
}

.discount-output-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.discount-chart-wrapper {
    position: relative;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.discount-chart-wrapper canvas {
    max-width: 100%;
    max-height: 100%;
}

.price-display-num {
    font-size: 42px;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}

.saving-display-num {
    font-size: 24px;
    font-weight: 700;
    color: #3b82f6;
}

.discount-row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.discount-row-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.discount-row-lbl {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.discount-row-val {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}


