.cartItem {
    display: flex;
    align-items: flex-end;
}

@media (min-width: 650px) {
    .cartItem .name {
        width: 300px;
    }

    .totalPrice {
        margin-top: 28px;
    }

    .remove a {
        background-color: #ce0a0a; /* Green */
        border: none;
        color: white;
        padding: 5px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 14px;
        border-radius: 10px;
        margin-top: 8px;
        margin-left: 20px;
    }

    .checkout a {
        background-color: #4caf50; /* Green */
        border: none;
        color: white;
        padding: 5px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        border-radius: 10px;
        margin-top: 5px;
    }
}

@media (max-width: 649px) {
    .body {
        margin: 0 3%;
    }

    .cartItem {
        width: 100%;
    }
    .cartItem .name {
        width: 200px;
    }

    .cartItem .remove {
        margin-left: auto;
    }
    .checkout a {
        background-color: #4caf50; /* Green */
        border: none;
        color: white;
        padding: 5px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        border-radius: 10px;
        margin-top: 5px;
    }

    .remove a {
        background-color: #ce0a0a; /* Green */
        border: none;
        color: white;
        padding: 3px 10px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 14px;
        border-radius: 10px;
        margin-top: 2px;
        margin-left: 30px;
    }

    .totalPrice {
        margin-top: 15px;
    }
}
