.product-button{

    padding-bottom: 20px;
}

.up-count{

    background-color: #789;
    padding: 3px;
    color: #fff;
    border-radius: 10%;
    box-sizing: border-box;
    cursor: pointer;
}

.down-count{

    background-color: #789;
    padding: 3px;
    color: #fff;
    border-radius: 10%;
    box-sizing: border-box;
    cursor: pointer;
}
/* =========================================================== */
.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.product-table th {
    background: #0b7cff;
    color: #fff;
    padding: 12px;
    text-align: left;
    font-size: 16px;
}

.product-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}

.product-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-cell img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
}

/* Quantity Box */
.qty-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-input {
    width: 50px;
    text-align: center;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.up-count, .down-count {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    background: #0b7cff;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.up-count:hover, .down-count:hover {
    background: #005fcc;
}

.price-cell {
    font-weight: bold;
    font-size: 16px;
}

.down-count {
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */

    width: 32px;
    height: 32px;

    background: #0b7cff;
    color: #fff;
    font-size: 20px;

    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
}

.up-count {
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */

    width: 32px;
    height: 32px;

    background: #0b7cff;
    color: #fff;
    font-size: 20px;

    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
}

.product-table th,
.product-table td {
    width: 33.33%;   /* divide the table into 3 equal columns */
    text-align: center;  /* optional: center-align text */
}


.final-amount{

    padding-top: 20px;
    padding-bottom: 20px;

}