/* Style for product image */
.product-image {
    width: 80px;
    height: 80px;
    object-fit: cover; /* Ensures the image fits within the dimensions */
    margin-left: -20px; /* Moves the image 20px to the left */
    margin-right: 15px; /* Adds space between the image and the text */
    display: inline-block; /* Ensures the image and text are inline */
    vertical-align: middle; /* Aligns the image vertically with the text */
}

/* Style for product name container */
.product-name {
    width: 300px; /* Increases the width of the product name container */
    display: inline-block; /* Ensures the product name stays inline with the image */
    vertical-align: middle; /* Aligns the text vertically with the image */
    padding-left: 10px; /* Adds padding to separate the text from the image */
    word-wrap: break-word; /* Ensures long product names wrap to the next line */
}

/* Style for quantity buttons */
.quantity-btn {
    background-color: #f8f9fa; /* Light gray background */
    border: 1px solid #ced4da; /* Border color */
    color: #282b2f; /* Text color */
    padding: 5px 10px; /* Padding for the buttons */
    font-size: 14px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 4px; /* Rounded corners */
    margin: 0 5px; /* Space between buttons */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.quantity-btn:hover {
    background-color: #c2c6ca; /* Slightly darker gray on hover */
}

/* Style for remove button */
.remove-btn {
    background-color: #dc3545; /* Red background */
    color: #fff; /* White text */
    border: none; /* No border */
    padding: 5px 10px; /* Padding for the button */
    font-size: 14px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 4px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.remove-btn:hover {
    background-color: #c82333; /* Darker red on hover */
}

/* Style for product image */
.product-thumbnail {
    text-align: left; /* Align the image to the left */
    width: 100px; /* Set a fixed width for the image column */
}

/* Style for product name */
.product-name {
    text-align: center; /* Align the product name to the left */
    padding-left: 10px; /* Add some padding to separate it from the image */
    vertical-align: middle; /* Align the text vertically in the row */
}

.product-image {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    object-fit: cover;
    display: block;
}

.checkout-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.checkout-form h2 {
    text-align: center;
}
.checkout-form .form-group {
    margin-bottom: 15px;
}
.checkout-form .form-group label {
    display: block;
    margin-bottom: 5px;
}
.checkout-form .form-group input,
.checkout-form .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.checkout-form .form-group select {
    height: 40px;
}
.checkout-form .form-group button {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.checkout-form .form-group button:hover {
    background-color: #218838;
}

#email-field2 {
    background: #f6f6f6 none repeat scroll 0 0;
    border: medium none;
    box-shadow: none;
    color: #999;
    height: 40px;
    margin-bottom: 15px;
    padding: 0 20px;
    transition: all 0.5s ease 0s;
    width: 100%;
    outline: none;
  }