/* Remove spinners from number inputs */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* Align and style headers */
.sm-header {
    text-align: left;
    font-size: 18px;
    padding-left: 0;
    margin-left: 0;
    font-weight: bold;
}

/* Paragraph styling fix */
.p {
    margin-left: 0;
    padding-left: 0;
}

/* Adjust spacing between form groups */
.form-group {
    margin-bottom: 15px;
}

/* Color code buyer subtotal and buyer total amount fields */
#buyer-subtotal-group input,
#bb-total-group input {
    background-color: #d4edda; /* Light green */
}

/* Color code seller subtotal and seller total amount fields */
#seller-subtotal-group input,
#seller-total-cost-group input,#seller-concessions-total-group input{
    background-color: #f8d7da; /* Light red */
}
#buy-net-lbl{
  font-size:16px;
}
/* Style for positive Net Buyer's Out of Pocket (green) */
.positive {
    background-color: #d4edda; /* Light green */
}

/* Style for negative Net Buyer's Out of Pocket (red) */
.negative {
    background-color: #f8d7da; /* Light red */
}
/* Style for neutral (zero or uncalculated) Net Buyer's Out of Pocket */
.neutral {
    background-color: #e2e3e5; /* Light gray for neutral */
    color: #6c757d; /* Neutral gray text */
}
