#sbp-hero-section {
    background: #f9f9f9;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 8px;
}

#sbp-item-list label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

#sbp-total {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}

#sbp-continue {
    margin-top: 20px;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#sbp-items-table {
    width: 100%;
    table-layout: fixed; /*forces all columns to keep equal width no matter the content.*/
}

#sbp-items-table th,
#sbp-items-table td {
    overflow: hidden;
    /*these three below : ensure that long input content doesn’t expand the row*/
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 8px;
    vertical-align: middle;
    text-align: left;
}

#sbp-items-table td input[type="text"],
#sbp-items-table td input[type="number"] {
    width: 100%;
    box-sizing: border-box; /*ensures paddings don't overflow the column width.*/
    padding: 6px 8px;
    font-size: inherit;
    font-family: inherit;
}

