/* Direct fixes for alignment issues */

/* Fix label spacing - make as close as possible to dropdown */
label.form-label {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.85rem;
    line-height: 1 !important;
}

/* QTY labels have been removed from the HTML */

/* Force inputs to exact same height as select boxes */
input.form-control, select.form-select {
    height: 38px !important;
    line-height: 1.5 !important;
}

/* Ensure currency displays have sufficient width for $00,000.00 format */
.currency, .price-display, #leftTotal, #rightTotal, #totalMonthlySavings, #monthlySavings {
    min-width: 120px !important;
    display: inline-block !important;
    text-align: right !important;
}

/* Consistent font size for product dropdowns and quantity fields */
#leftProductsContainer, #rightProductsContainer, 
.form-select, .form-control {
    font-size: 14px !important;
}

/* Align QTY field precisely with dropdown */
.product-qty-row {
    display: flex !important;
    align-items: center !important;
    margin-top: 0 !important;
}

/* Hide any additional spacing elements */
.small.text-muted.mb-1 {
    display: none !important;
}

/* Remove any unwanted vertical spacing */
.mb-1, .mb-2, .mb-3 {
    margin-bottom: 0 !important;
}

.product-row {
    margin-bottom: 10px !important;
}