.container {
   width: 950px;
}
.removeButton {
        background-color: #0d6efd; /* Red background */
        color: #fff; /* White text */
        border: none; /* No border */
        padding: 5px 10px; /* Padding */
        cursor: pointer; /* Cursor style */
        border-radius: 5px; /* Rounded corners */
    }

    .removeButton:hover {
        background-color: #dc3545; /* Darker red background on hover */
}
.quantity {
        width: 7ch; /* Set width to fit 3 characters */
        margin-right: 10px;;
}
.orderRow .leftAlign{
        text-align: left;
}
select {
    font-size: 16px; /* Adjust as needed */
}

.blue {
    color: blue;
}

p {
    margin-bottom: 0;
}
.center {
    text-align: center;
}

.resizeable {
    max-width: 400px; /* Adjust as needed */
    width: max-content;
    white-space: nowrap; /* Prevent wrapping */
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis if content overflows */
}
