.container-fluid {
    max-width: 1200px;
    margin: 220px auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

#cart-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.cart-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    margin: 10px;

}

.cart-item-img {
    width: 100px;
    height: auto;
    margin-right: 15px;
}

.cart-item-details h4 {
    margin: 0;
    font-size: 18px;
}

.cart-item-details p {
    margin: 5px 0;
}

.order-form {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 30px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 50%;
}

.order-form h3 {
    margin-top: 0;
}

.order-form div {
    margin-bottom: 10px;
}

.order-form label {
    display: block;
    margin-bottom: 5px;
}

.order-form input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 15px;
}

.order-form button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.order-form button:hover {
    background-color: #45a049;
}

@media screen and (max-width: 768px) {
    .container-fluid {
        margin: 40px auto;
    }

    #cart-items {
        width: 98%;
    }

    .order-form {
        width: 98%;
    }
    
}